创建一个固定大小的文件

创建一个日志文件开始,然后在其中填入一个10MB的随机比特流数据。

# touch test.log

# head -c 10M < /dev/urandom > test.log

# ll -h test.log

-rw-r--r-- 1 root root 10M Jul 18 10:32 test.log

-c 可以指定文件大小,单位K、KB、M,MB,G,GB对应的单位换为不一样

K may have a multiplier suffix:

b 512,

kB 1000,

K 1024,

MB 1000*1000,

M  1024*1024, 

GB  1000*1000*1000, 

G 1024*1024*1024,

and so on for T, P, E, Z, Y.


你可能感兴趣的:(创建一个固定大小的文件)