简单而简短的问题:mv
是否有可能移动一个随机文件?
我知道mv
可以使用mv *.extension
移动具有特定扩展名的所有文件,但是由于我对Ubuntu/Linux非常陌生,所以我不确定mv
是否能做到这一点。
发布于 2016-03-31 14:11:10
请看一下shuf
和xargs
命令的手册页,这可能是您要寻找的:
shuf -n [Number of files to move] -e [PATH to the files to be moved] | xargs -i mv {} [PATH to the dest]
https://askubuntu.com/questions/752465
复制