Linux5-echo,>,tail
1.echo命令
echo是输出命令,类似printf
例如:echo "hello world",输出hello world
echo 'pwd',输出pwd的位置。''是键盘上~
2.重定向符> >>
>指把左边内容覆盖到右边
echo 'hello world'>test.txt
>>把左边内容追加到右边
3.tail命令
tail用于查看末尾内容,默认为末尾10行
例如:tail test.txt
选项-num,例如tail -5 test.txt,查看末尾5行
选项-f,例如tail -f test.txt,实时跟踪(如果添加数据,这里立即显示,如果要退出追踪,按Ctrl+c)