Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $ mkfile サイズ[b|k|m|g] ファイル名
  2.  
  3. # 1KBのファイルを作成する
  4. $ mkfile 1k bar.txt
  5.  
  6. # 1MBのファイルを作成する
  7. $ mkfile 1m foo.txt
  8.  
  9. # 1GBのファイルを作成する
  10. $ mkfile 1g hoge.txt
  11.  
  12. # ファイルサイズを確認する
  13. $ ls -lh
  14. -rw------- 1 donchan922 staff 1.0K 6 9 17:46 bar.txt
  15. -rw------- 1 donchan922 staff 1.0M 6 9 17:46 foo.txt
  16. -rw------- 1 donchan922 staff 1.0G 6 9 17:47 hoge.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement