mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-14 08:01:16 +01:00
10 lines
250 B
Text
10 lines
250 B
Text
# To clear the contents from a file:
|
|
truncate -s 0 file.txt
|
|
|
|
# To truncate a file to 100 bytes:
|
|
truncate -s 100 file.txt
|
|
|
|
# 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.)
|