查找xargs随机访问目录中的文件

时间:2018-11-26 05:42:23

标签: random find cat xargs

正试图 cat / dev / random 到目录中的所有文件。尝试了如下所示的通常的find exec方法,但徒劳无功,

find -maxdepth 1 -type f -iname *.bin -exec cat /dev/random | head -n1024 > {} \;

尝试过xargs的方式,find -maxdepth 1 -type f -print0 | xargs -0 -n1 -i{} cat /dev/random | head -n 1024 > {},但是那也往南走,知道吗?

0 个答案:

没有答案