This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a 10-Meg file | |
$ dd if=/dev/zero of=foo bs=1024 count=10240 | |
10240+0 records in | |
10240+0 records out | |
10485760 bytes (10 MB) copied, 0.0142283 s, 737 MB/s | |
# Check with ls = 10M | |
$ ls -la foo | |
-rw-rw-r-- 1 mina mina 10485760 Sep 11 15:32 foo |