Answers for "how to trim log file linux"

1

how to trim log file linux

truncate -s 0 logfile

Where -s is used to set or adjust the file size by SIZE bytes. 
The file can be relative to the current directory or 
an absolute path to the file provided.

For complete truncate command options, use the option --help
Posted by: Guest on February-04-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language