bash - Slow finishing when cat a large file of null content -
the shell command:
truncate -s 1000000000 largefile echo 'eof' >> largefile cat largefile
why last command blocks several seconds after `eof' being printed?
cat
doesn't block - busy reading , writing 1 billion zero bytes.
Comments
Post a Comment