2013年3月18日 星期一

Linux Shell Script


#!/bin/bash
cat 'temp.txt' | while read line
do
temp=$(echo $line | sed 's/^M//') #將讀取進來的資料去除^M
index=$(echo $temp | awk -F "," '{ print $1 }') #用逗點分隔開,第一個字串。

if [ ! -d /var/www/html/imgbackup/image/$index ]; then #如果$index資料夾不存在
    mkdir ./image/$index
fi

wget -t0 -O ./image/$index/$picture.jpg $content #下載資料

沒有留言:

張貼留言