2010年1月7日 星期四

進入不同資料夾執行相同動作之shell

#!/bin/sh

file=`cat /home/bbs/brd/zzz2`  //所有路徑名單

for th in $file  //逐一執行所有路徑
do
  cd /home/bbs/brd/$th  //進入某路徑
  /home/bbs/bin/redir -b  //執行指令
  mv .DIR .DIR.bak
  mv .DIR.re .DIR
  echo $th done...
done