User Tools

Site Tools


bash:cleaning_log_files

This is an old revision of the document!


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.

#!/bin/bash
LOG_DIR=/var/log
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.1576610997.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki