linux 文件操作命令 touchcatmorelessheadtail

Posted bailaowu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 文件操作命令 touchcatmorelessheadtail相关的知识,希望对你有一定的参考价值。

touch /bin/touch 创建空文件

linux 创建文件可以使用特殊符号,/除外

touch test test1 创建了两个文件
touch "test test1" 创建了一个文件名带空格的文件
touch ‘test test1‘ 创建了一个文件名带空格的文件


cat /bin/cat 显示文件内容 

-n 显示行号
tac 倒过来显示 这个命令不支持-n

cat -n /etc/services
tac /etc/services

cat 适用于查看内容少的文件


more /bin/more 分页显示文件内容

空格或f 翻页
回车 换行
q或Q 退出

more /etc/services

more 不能往上翻页,不支持pageUp/pageDown/↑/↓


less /usr/bin/less 分页显示文件内容,除了具有more的功能外,还可向上翻页,支持pageUp/pageDown/↑/↓

less /etc/services
另外less 还支持搜索,比如输入/a回车,再输入 n 表示下一个


head /usr/bin/head 显示文件前面几行

-n 指定行数
head -n 20 /etc/services 缺省10行


tail /etc/services 显示文件末尾几行

-n 缺省10行
-f 动态显示文件末尾内容,head不支持这个选项
tail -f /var/log/messages











以上是关于linux 文件操作命令 touchcatmorelessheadtail的主要内容,如果未能解决你的问题,请参考以下文章

linux保存退出命令

Linux系统简单文件操作命令

Linux 常用操作命令

Linux 常用操作命令

Linux如何使用正则表达式命令?文本文件操作命令

06_Linux目录文件操作命令3查找命令_我的Linux之路