你怎么:
- 从文本文件中读取
- 用逗号分隔每一行
- 并将其分配给bash中的变量?
文件列表
重命名file.xml,url-01.php 重命名
FileDifferent.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 作业放置 shell 文件的典型位置是什么?