744d33d502
* Centec x86 goldengate update (#8)
10 lines
174 B
Bash
Executable File
10 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#remove syslog
|
|
|
|
sudo find /var/log/ -mtime +7 -name "syslog.*" | sudo xargs rm -rf
|
|
|
|
#echo "remove_syslog.sh crontab is running" >> /home/admin/shell.txt
|
|
|
|
exit 0
|