greenplum定期清理日志脚本

#!/bin/bash
# file name : gpdb_clear.sh
# author : jeff yuan

# start time
start_time=$(date)
echo "-------- Start time is $start_time --------"
start_seconds=$(date +%s)

# remove gpdb-log before 3 month ago
clear_date=$(date -d '-3 month' '+%Y-%m-%d')
timeline="gpdb-$clear_date*.csv"
echo "-------- Clear File like $timeline --------"
rm -rf $timeline

# end time
end_time=$(date)
echo "-------- End time is $end_time --------"
end_seconds=$(date +%s)
diff=$((end_seconds - start_seconds))
echo "Total $diff seconds."
echo ""
echo ""






你可能感兴趣的:(GreenPlum,清理日志)