简单而简短的问题;是否可以mv移动随机文件?
我知道mv可以使用 移动具有特定扩展名的所有文件mv *.extension,但是由于我对 Ubuntu/Linux 总体来说还是很新的,我不确定是否mv可以这样做。
小智 7
查看shuf和xargs命令的手册页,这可能是您要查找的内容:
shuf -n [Number of files to move] -e [PATH to the files to be moved] | xargs -i mv {} [PATH to the dest]
Run Code Online (Sandbox Code Playgroud)