在LINUX中,要使转义符生效,需加参数-e
在e c h o命令输出之后附加换行,可以使用\ n选项:
echo -e "this echo's 3 new lines\n\n\n"
在e c h o语句中使用跳格符,记住别忘了加反斜杠\t:
$ echo -e "here is a tab\there are two tabs\t\tok"
>myfile 重定向符号>。
>>myfile 可以追加到一个文件的末尾,这意味着不覆盖原有的内容
引号是一个特殊字符,所以必须要使用反斜杠\来使s h e l l忽略它的特殊含义。
$ echo "\"/dev/rmt0"\"
"/dev/rmt0"
cat 命令
cat dmk.sh | more 分页显示文件内容
等价命令:less dmk.sh
新建文件
cat >myfile
This is great
<ctrl-d>
显示时加上行号
#cat -n myfile
command > filename 2>&1 把把标准输出和标准错误一起重定向到一个文件中