日期:2014-05-16  浏览次数:20620 次

linux命令收集(1)

这是一个linux常见命令的列表。
那些有? 标记的条目,你可以直接拷贝到终端上而不需要任何修改,因此你最好开一个终端边读边剪切&拷贝 。
所有的命令已在Fedora和Ubuntu下做了测试

命令 描述
? apropos whatis 显示和word相关的命令。 参见线程安全
? man -t man | ps2pdf - > man.pdf 生成一个PDF格式的帮助文件
? which command 显示命令的完整路径名
? time command 计算命令运行的时间
? time cat 开始计时. Ctrl-d停止。参见sw
? nice info 运行一个低优先级 命令(这里是info)
? renice 19 -p $$ 使脚本运行于低优先级。用于非交互任 务。
目录操作
? cd - 回到前一目录
? cd 回到用户目录
? (cd dir && command) 进入目录 dir,执行命令command然后回到当前目录
? pushd . 将当前目录压入栈,以后你可以使用 popd回到此目录
文件搜索
? alias l='ls -l --color=auto' 单字符文件列表命令
? ls -lrt 按日期显示文件. 参见newest
? ls /usr/bin | pr -T9 -W$COLUMNS 在 当前终端宽度上打印9列输出
? find -name '*.[ch]' | xargs grep -E 'expr' 在当前目录及其子目录下所有.c和.h文件中寻找'expr'. 参见findrepo
? find -type f -print0 | xargs -r0 grep -F 'example' 在当前目录及其子目录中的常规文件中查找字符串'example'
? find -maxdepth 1 -type f | xargs grep -F 'example' 在当前目录下查找字符串'example'
? find -maxdepth 1 -type d | while read dir; do echo $dir; echo cmd2; done 对每一个找到的文件执行多个命令(使用while循环)
? find -type f ! -perm -444 寻找所有不可读 的文件(对网站有用)
? find -type d ! -perm -111 寻找不可访问的 目录(对网站有用)
? locate -r 'file[^/]*\.txt' 使用 locate 查找所有符合*file*.txt的文件
? look reference 在(有序)字典中快速查找
? grep --color reference /usr/share/dict/words 使字典中匹配的正则表达式高亮
归档 and compression
? gpg -c file 文件加密
? gpg file.gpg 文件解密
? tar -c dir/ | bzip2 > dir.tar.bz2 将 目录dir/压缩打包
? bzip2 -dc dir.tar.bz2 | tar -x 展开 压缩包 (对tar.gz文件使用gzip而不是bzip2)
? tar -c dir/ | gzip | gpg -c | ssh user@remote 'dd of=dir.tar.gz.gpg' 目录dir/压缩打包并放到远程机器上
? find dir/ -name '*.txt' | tar -c --files-from=- | bzip2 > dir_txt.tar.bz2 将目录dir/及其子目录下所有.txt文 件打包
? find dir/ -name '*.txt' | xargs cp -a --target-directory=dir_txt/ --parents 将目录dir/及其子目录下所有.txt按照目录结构拷 贝到dir_txt/
? ( tar -c /dir/to/copy ) | ( cd /where/to/ && tar -x -p ) 拷贝目录copy/到目录/where/to/并保持文件属性
? ( cd /dir/to/copy && tar -c . ) | ( cd /where/to/ && tar -x -p ) 拷贝目录copy/下的所有文件到目录 /where/to/并保持文件属性
? ( tar -c /dir/to/copy ) | ssh -C user@remote 'cd /where/to/ &&