echo "123456" >> 0.txt cat 0.txt "123456" cat filename | tail -n +500 | head -n 100 //打印部分行 echo "123456"| tee -a 0.txt printf "123456" >>0.txt //和echo功能相同,并提供更多的格式
touch test.txt echo 123456 >> test.txt cat test.txt touch test2.txt cat test.txt > test2.txt // cat -n test.txt > test2.txt 加行号写入//cat -b test.txt test2.txt >test3.txt //合并写入 cat test2.txt
print:
https://www.runoob.com/linux/linux-comm-cat.html
#########################################################################################################
Linux命令: cat 和>, >>
“>’”覆盖
">>" 追加
使用>> 重定向后 文件 中原本的内容不会被覆盖,而是在原有的内容后面 追加 新的内容
cat
cat 原单词concatenate(用途是连接文件或标准输入并打印。)
cat 命令用于将所有文件内容打印到屏幕上。
语法:
cat 文件名
实战
使用xshell连接linux
进入 /root 目录
新建 catTest目录
进入 catTest 目录
新建 a.txt 文件
查看/root目录下的详细内容 ,将内容重定向到 a.txt 文件中
ls -l /root > a.txt
查看 a.txt
cat a.txt
查看/root目录下的内容 ,将内容重定向到 a.txt 文件中, 再次查看 a.txt ,原有的内容被覆盖,只存在新的内容
ls /root > a.txt
cat a.txt
将/root目录下的详细内容 追加到 a.txt,再次查看a.txt文件
ls -l /root >> a.txt
cat a.txt
https://www.jianshu.com/p/8365c5fd9de2
标签:test2,echo,cat,用法,test,txt,root From: https://www.cnblogs.com/pengmn/p/18093362