bash 学习笔记5
locate 用法: locate source 从database中去检查文件
find 的用法: find ./ -name "*.java" -type f -size 1024k
find 后面加 -exec 后,能够将找到的文件进行处理,使用时有可能由于语法错误报 find: missing argument to `-exec'
正确的写法为:如find ./ -name "test" -exec grep "^jia.*" {} \;
-exec 后面是"空格" command "空格"{}"空格"\;
压缩: tar -zcf 压缩后文件名.tgz(tar.gz) 压缩文件名
解压: tar -zxf *.tar.gz(.tgz)