使用mv命令linux时输出文件名

时间:2017-10-27 05:20:49

标签: linux exec mv

我想知道在shell脚本中使用mv命令时是否有办法输出移动的文件列表?

我正在同一台服务器上将文件从一个目录移动到另一个目录 我正在使用以下的shell脚本: find path / to / source / -type -f -name“CC * .txt -mmin + 1 -exec mv {} / path / to / destination \;

这也是通过crontab

调用的

1 个答案:

答案 0 :(得分:0)

希望这会有所帮助:

mv source/* destination/ | ll destination/ > /tmp/list.txt

您可以根据需要使用llls