- - PR -
.recycle 以下のものをすべて削除(shellプログラム)
投稿者 | 投稿内容 |
---|---|
|
投稿日時: 2005-08-26 14:52
あちこちのシェルマニュアルを参考にして
つぎの3つのプログラムで逃げることに しました。angelさんMMXさんご協力 どうも有難うございました。 -------------------------------------------------------- (find_recycle.sh) #!/bin/sh find /home/ -name ".recycle" 2>/dev/null > /tmp/dirrecycle find /home2/ -name ".recycle" 2>/dev/null >> /tmp/dirrecycle find /home3/ -name ".recycle" 2>/dev/null >> /tmp/dirrecycle ------------------------------------------------------------- (read-del.sh) #!/bin/sh BUFIFS=$IFS IFS= exec 3< $1 while read FL 0<&3 do `find ${FL}/* -exec rm -rf {} ¥;` done exec 3<&- IFS=$BUFIFS -------------------------------------------------------------- (delete-recycle.sh) #!/bin/sh find_recycle.sh read-del.sh "/tmp/dirrecycle" |