bash:cleaning_log_files
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
bash:cleaning_log_files [2020/07/15 09:30] – external edit 127.0.0.1 | bash:cleaning_log_files [2021/01/26 16:32] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== BASH - Cleaning Log Files ====== | ||
- | This program will simply delete all log files present inside your /var/log directory. You can change the variable that holds this directory for cleaning up other logs. | ||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | LOG_DIR=/ | ||
- | cd $LOG_DIR | ||
- | |||
- | cat /dev/null > messages | ||
- | cat /dev/null > wtmp | ||
- | echo "Logs cleaned up." | ||
- | </ | ||
- | |||
- | Remember to run this Linux shell script as root. |
bash/cleaning_log_files.1594805433.txt.gz · Last modified: 2020/07/15 09:30 by 127.0.0.1