ls -lrt |grep 'Jun 30th' | awk '{print $9}' | xargs mv -t /destinationFolder
我正在尝试从特定日期或模式或创建用户移动文件。如果没有该选项,它就无法正常工作-t。
-t
有人可以解释一下xargs -n移动-t命令吗?
xargs -n
ls pipe xargs filter mv
filter ×1
ls ×1
mv ×1
pipe ×1
xargs ×1