1
0
mirror of https://github.com/cheat/cheat.git synced 2024-12-23 13:09:44 +01:00
cheat/cheatsheets/truncate

11 lines
250 B
Plaintext
Raw Normal View History

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