[linux] 随机抽取某个目录./aa/中的10个jsonl文件,放在./bb中

ls ./aa/*.jsonl | shuf -n 10 | xargs -I {} cp {} ./bb/
shuf -n 10 -e ./aa/*.jsonl | xargs -I {} cp {} ./bb

你可能感兴趣的:(linux,linux,运维,服务器)