如何使用cpanel cronjob将多个文本文件合并为一个

时间:2017-10-04 11:32:29

标签: file merge cron cpanel

Hello Stack Community,

快速提问,我正在尝试使用Cpanel cron作业将多个文本文件合并为一个,这是我正在使用的命令:

*   *   *   *   *   /home/xxx/public_html/yy/*.txt > /home/xxx/public_html/yy/joint.txt

结果文件为空

1 个答案:

答案 0 :(得分:0)

cronjob应如下所示:

*   *   *   *   * for file in /home/xxx/public_html/yy/*.txt; do cat $file >> /home/xxx/public_html/yy/joint.txt; done

您基本上搜索 / home / xxx / public_html / yy / 中所有 .txt 扩展名的文件,然后将每个文件的内容追加到目标文件(在您的情况下, joint.txt )。

试一试!