【查找命令】
which 只在变量路径下查找
[root@localhost~]# which ls
aliasls=’ls –color=tty’
/bin/ls
Whereis 列出详细的路径
slocate/locate 全部查找 拥有自己的数据库updatedb 更新locate数据库
/etc/cron.daily系统存放计划任务的目录
find/ -name “etc”
find /etc -name”*network*” -exec file {} \; 将find的文件查找出来的路径写入到{}中 exec 代表不用交互直接执行
find/home -user chenlong -a -group chenlong –ls 与
find/home -user chenlong -o -group chenlong –ls 或
#find /home -user chenlong -a -group chenlong -a -type d –ls
查找用户或组为chenlong的并且文件类型为目录的文件,并列出。
#find / -user -type -name -group -perm -size –mtime 各种参数
grep 搜索文件中指定字符
-R递归
-l只列出文件名
【压缩工具】
传统的最古老的Unix压缩工具
compress 文件后缀:.Z
uncompress
最广泛的压缩工具,Linux西戎中标准压缩工具
对文本文件能够达到很高压缩率
gzip 文件后缀:gz
gunzip
新版Linux压缩工具
比gzip拥有更高的压缩率
bzip2 文件后缀:bz2
bunzip2
【tar包的使用】
tar
-c 将文件备份出来(创建)
-v 将过程输出
-x 解压备份
-r 追加到已经存在的包中
-t 查看
#tar cvf
rvf
xvf
tvf
xvfz 解开gz包 (gzip压缩)
xvfj 解开bz2包 (bzip2压缩)
-C 解压到其他位置