最新回答 / qq_越过大西洋
cat 查看文件内容 cat /etc/passwd 会输出passwd文件内容echo 是显示输入的字符信息 echo /etc/passwd 会输出 /etc/passwd
2015-03-29
管道:
cat file3.d | uniq 取出文件中不重复的内容
cat file3.d | uniq |grep txt 取出文件中不重复且包含 txt 的内容
cat file3.d | uniq |grep txt | sort 取出文件中不重复且包含 txt 并排序的内容
cat file3.d | uniq 取出文件中不重复的内容
cat file3.d | uniq |grep txt 取出文件中不重复且包含 txt 的内容
cat file3.d | uniq |grep txt | sort 取出文件中不重复且包含 txt 并排序的内容
2015-03-19
输出重定向: > 例 cat file >> file1 等价于 cat file file1 > out_result
输入重定向: < 例 cowsay < out_result
错误输出重定向: ls shit 2> err_output 这里2代表错误输出的文件名
输入重定向: < 例 cowsay < out_result
错误输出重定向: ls shit 2> err_output 这里2代表错误输出的文件名
2015-03-19
ls /bin > output.txt 释: 把 bin 下的所有文件名输入到 output.txt 这个文件中
grep less < output.txt 释: 选出 output.txt 文件中所有包含 less的文字
以上两条等价于 ls /bin | grep less
grep less < output.txt 释: 选出 output.txt 文件中所有包含 less的文字
以上两条等价于 ls /bin | grep less
2015-03-19