标签:|| echo 当前系统时间 dev 判断目录 ash 系统时间 判断 null
#/bin/bash
#使用date 取得当前系统时间
d=`date +%F`
dir=/tmp/data/logs
#判断目录是存在
[ -d $dir ] || mkdir -p $dir
echo "$d logs" > $dir/$d.log
df -h >> $dir/$d.log
find $dir/ -mtime +15 | xargs rm > /dev/null 2>&1
标签:|| echo 当前系统时间 dev 判断目录 ash 系统时间 判断 null
原文地址:https://blog.51cto.com/13667909/2504522