If you don\\\\\\\\\\\\\\\'t wanna do it, you find an EXCUSE; if you do, you\\\\\\\\\\\\\\\'ll find a WAY :-)
全部博文(235)
发布时间:2011-02-19 16:08:31
find / ! -user root ! -user bin ! -user student -ls 2 > /dev/nullfind / -perm +7000 -exec ls -l {} \;ps axf -o pid,comm,%cpu,%mem,state,tty,euser,ruser,niceps aux比较如下三种方法:$ ps axo pid,comm|grep 'cups'2734 cupsd3502 eggcups$ pgrep cups27343502$ pidof cupsd &n.........【阅读全文】
发布时间:2011-02-19 15:18:27
sed 's/cat/dog/g' petssed 's/cat/dog/gi' petssed '1,50s/dog/cat/g' petssed '/digby/,/duncan/s/dog/cat/g' pets使用字符串搜索来指定地址,从包含'digby' 的那一行开始到 包含'duncan'的那一行为止,把 dog 改为 cat多个 sed 指令sed -e 's/dog/cat/' -e 's/hi/lo/' pets要进行大量编辑,将命令保存的文件.........【阅读全文】