[[email protected] ~]# cd /usr/local/src/
简化用法:
符号 | 作 用 |
~ | 代表用户的家目录 |
- | 代表上次所在目录 |
. | 代表当前目录 |
.. | 代表上级目录 |
3. mkdir 创建目录 [[email protected] ~]#mkdir cangls 建立目录 [[email protected] ~]# mkdir -p lm/movIE/jp/cangls 递归建立目录
4.rmdir 删除目录,但 rmdir 命令的作用十分有限,因为只能刪除空目录,所以一旦目录中有内容,就会报错 [[email protected] ~]#rmdir cangls 刪除目录 [[email protected] ~]# rmdir -p lm/movIE/jp/cangls/ 递归刪除目录
5.touch 果文件不存在,则会建立空文件;如果文件已经存在,则会修改文件的时间戳(访问时间、数据修改时间、状态修改时间都会改变)
[[email protected] ~]#touch bols #建立名为 bols 的空文件
-a:只修改文件的访问时间(Access Time) -c:如果文件不存在,则不建立新文件 -d:把文件的时间改为指定的时间 -m:只修改文件的数据修改时间(Modify Time) 6. stat 查看文件详细信息 ,文件有访问时间、数据修改时间、状态修改时间这三个时间,而没有创建时间。stat 是査看文件详细信息的命令,而且可以看到文件的这三个时间 [[email protected] ~]# stat anaconda-ks.cfg 査看文件的详细信息 [[email protected] ~]#stat -f anaconda-ks.cfg 査看文件系统信息 7. cat 查看文件内容常见用法:
[[email protected] ~]# cat -n anaconda-ks.cfg
8. more 查看文件内容,可交互 [[email protected] ~]# more anaconda-ks.cfg 空格键:向下翻页。 b:向上翻页。 回车键:向下滚动一行。 / 字符串:搜索指定的字符串。 q:退出。 9.head 显示文件开头的内容,默认10行,-n, [[email protected] ~]# head anaconda-ks.cfg [[email protected] ~]# head -n 20 anaconda-ks.cfg [[email protected] ~]# head -20 anaconda-ks.cfg 10.tail 显示文件结尾的内容,默认10行,-n,-23,-f [[email protected] ~]# tail anaconda-ks.cfg 默认10行 [[email protected] ~]# tail -n 20 anaconda-ks.cfg 显示20行 [[email protected] ~]# tail -20 anaconda-ks.cfg 显示20行 [email protected] ~]#tail -f anaconda-ks.cfg,使用"-f"选项来监听文件的新増内容 总结
以上是内存溢出为你收集整理的linux命令全部内容,希望文章能够帮你解决linux命令所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)