正在加载今日诗词....
Topic

Linux

A collection of 4 issues

Linux 学习笔记02 - 文件操作

Linux文件系统将所有的磁盘都并入一个虚拟目录下,在使用新的存储媒体之前,需要将它放在虚拟目录下,这项工作称为 挂载(mounting) 常用文件操作 * touch filename 创建文件,如果存在则更新其修改时间 * mkdir directory 创建目录 * mv source destination 重命名某个文件source 也就是 移动某个文件 * cp source destination 复制某个文件source到destination位置 * rm -ir [directory | filename] 询问是否删除文件或者文件夹 * rm -rf directory 强制删除文件夹,危险操作 * cat filename 查看文件的所有内容,不适用大文件 * more filename 分页查看文件内容,适用于大文件 * tail -10 filename 查看文件的最后10行文字 * tail -f filename 时时查看文件的最后输出内容,
6 min read

Subscribe to JAY 站 | Share Thoughts

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
jamie@example.com
Subscribe