You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
355 B
15 lines
355 B
1 month ago
|
#!/bin/bash
|
||
|
. /3rd/env.env
|
||
|
LOG_PATH=/data/mmogrun/publish/log
|
||
|
if [ -d "${LOG_PATH}" ]; then
|
||
|
cd ${LOG_PATH}
|
||
|
echo '*********************start clear log file********************************'
|
||
|
rm -rf *
|
||
|
rm -rf *.log.*
|
||
|
rm -rf *.stat.*
|
||
|
rm -rf gp*
|
||
|
rm -rf *.error.*
|
||
|
echo '*********************end clear log file********************************'
|
||
|
fi
|
||
|
|