どうやって:
- テキストファイルから読み取る
- 各行をカンマで区切る
- それをbashの変数に割り当てますか?
ファイルリスト
renamedfile.xml,url-01.php
renamedFileDifferent.xml,url-02.php
specificFileRename.xml,"url-03"
newFilename.xml,"url-04"
私はこのようなことを達成しようとしています:
#!/usr/bin/env bash
while read line
do
wget -c -O newfile remoteFile >/dev/null 2>&1
done < filelist
また、cron ジョブ用のシェル ファイルを配置する一般的な場所はどこですか?