find 命令:
find -name hello.c
find -name hello* //有通配符的例子
cat 命令:
cat hello.c 显示当前文件的内容
cat -n hello.c 输出时在前面都加上行号
cat 1.txt 2.txt > 3.txt 将两个文件进行合并到第三个文件中去
sort 命令:
sort 3.txt | cat -n 进行排序
| 管道的作用是将第一个命令的输出作为第二个命令的输入
cp 命令 :
cp source.txt directory.txt
cp -a 将目录复制过去
cp -r 递归复制目录下的内容
wc 命令:
统计字节数。