标签:分享 img 路径 常用命令 family blog hello name lin
1.复制文件夹
复制文件夹/usr/t1到/home/t2路径下
cp -r /usr/t1 /home/t2
直接强制覆盖
cp -rf /usr/t1 /home/t2
2.删除文件夹
rm -r /usr/t1
直接强制删除
rm -rf /usr/t1
3.查找文件路径
查找test和test1文件夹下t1_1的路径
find test test1 -name t1_1
4.在文件中查找内容
查找2.txt中包含hello的行及前后3行
grep -3 "hello" 2.txt
5.比较两个文件或者文件夹
diff dir1 dir2
6.修改文件或者文件夹的时间
touch *将当前目录下的文件或者文件夹时间修改为系统当前时间【不对子文件生效】
7.排序和去重
sort b.txt | uniq
则把 b.txt 中的行排序并去掉重复的行,其结果为
标签:分享 img 路径 常用命令 family blog hello name lin
原文地址:http://www.cnblogs.com/smileyes/p/6959339.html