This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangzhihan-device-manageme…/roles/tsg-common-files/tsg_monitor_cleanup_tmp.sh

14 lines
206 B
Bash

#!/bin/sh
cd /tmp/__tsg_monitor_tmp_dir
if [ $? != 0 ]; then
#echo "cd to dir error!"
exit 1
fi
#cur_dir=`pwd`
#echo "cur dir is: $cur_dir"
find . -ctime +1 -type d -name "_MEI*" | xargs rm -rf