dd 〈/dev/zero〉file bs=1024k count=20000 2>/dev/null
用shell脚本的方式实现
#!/usr/bin/ksh
i=0
FILE=/path/big_file
echo " ">$FILE
while ((i<36));do
cat $FILE>>$FILE
let i=i+1
done
原文转自:http://www.ltesting.net