1.echo命令
在命令行内输出指定内容,输出内容比较复杂的时候,用双引号包括
echo "helo linux"
反引号
反引号包围的是命令,而不是简单输出echo后面的内容
echo `pwd`
/home/itheima
echo pwd
pwd
echo "我的工作路径是:`pwd`"
重定向符
重定向符:>和>>
(1)>,将左侧命令的结果,覆盖写入到符号右侧指定的文件中
(2)>>,将左侧命令的结果,追加写入到符号右侧指定的文件中
echo "hello linux" > test.txt
cat test.txt
hello linux
echo "im linux" >> test.txt
cat test.txt
hello linux
im linux
2.tail命令
使用tail命令,可以查看文件尾部的内容。
tail [-f -n] 路径
- -f,表示持续追踪
- -n,表示行数