我想知道在shell脚本中使用mv命令时是否有办法输出移动的文件列表?
我正在同一台服务器上将文件从一个目录移动到另一个目录 我正在使用以下的shell脚本: find path / to / source / -type -f -name“CC * .txt -mmin + 1 -exec mv {} / path / to / destination \;
这也是通过crontab
调用的答案 0 :(得分:0)
希望这会有所帮助:
mv source/* destination/ | ll destination/ > /tmp/list.txt
您可以根据需要使用ll
或ls
。