up

xargs 資料収集中

資料

http://oss.timedia.co.jp/show/ossz/oneline/2006-06-07
% find ~/ -name '*.log.*' -a ! -name '*.gz' -mtime +0|xargs gzip
% find ~/ -name '*.log.*' -a ! -name '*.gz' -mtime +0 -exec gzip {} \;
% find ~/ -name '*.log.*' -a ! -name '*.gz' -mtime +0 -print0|xargs -0 gzip
http://unix-study.com/weblog+details.blog_id+96.htm
$ ls | xargs -n 1  /* Do it your self   */
001_sendmail_start
002_sendmail_start
003_sendmail_start
...
http://www.math.kobe-u.ac.jp/~kodama/tips-scan-virus.html
$ find /bin -xdev -type f -perm +111|xargs strings -f|grep snortdos
find / -xdev -type f -perm +111|xargs strings -f|grep snortdos
http://www.ne.jp/asahi/hishidama/home/tech/unix/combination.html
$ find /usr/include -name "*.h" | xargs grep 検索文字列
$ find . -name "*.conf" | xargs ls -l
$ ls -l `find . -name "*.conf"`
http://x68000.q-e-d.net/~68user/unix/pickup?xargs
http://sleep.mat-yan.jp/~yutaka/linux_admin/tech.html
http://www.fan.gr.jp/~ring/doc/find/find-ja.html#Top

http://www.fan.gr.jp/~ring/doc/find/find-ja_4.html#SEC51

http://www.bookshelf.jp/texi/find/find-ja.html#SEC_Top ;;Same Document?

find . -depth -print0 |
  cpio --create --null --format=crc --file=/dev/nrst0

以下のコマンドを使用して,そのアーカイブをリストアすることが可能です.
 	

cpio --extract --null --make-dir --unconditional \
  --preserve --file=/dev/nrst0

たくさんたくさん有るようです

にゃんたろう 拝!

2007年11月28日 (水) 21:11:42 JST 作成


up

Copyright © 2004.-2007. nyantarou All Rights Reserved.