Made trivial changes to some of the cheatsheets to make them play more nicely with colorized output.

This commit is contained in:
Chris Lane
2013-08-23 19:00:37 -04:00
parent b2159662f3
commit bbbe9193e0
4 changed files with 23 additions and 24 deletions

View File

@ -1,10 +1,10 @@
To clear the contents from a file:
# To clear the contents from a file:
truncate -s 0 file.txt
To truncate a file to 100 bytes:
# To truncate a file to 100 bytes:
truncate -s 100 file.txt
To truncate a file to 100 KB:
# To truncate a file to 100 KB:
truncate -s 100K file.txt
(M, G, T, P, E, Z, and Y may be used in place of "K" as required.)
# (M, G, T, P, E, Z, and Y may be used in place of "K" as required.)