开发工具安装 yum groupinstall “Development tools”
查看文件夹占用空间:
du -h –max-depth=1
apt-get install ubuntu-developer-tools-center
yum install bash-completion 命令补全
更新时间
timedatectl
设置时区
timedatectl set-timezone Asia/Shanghai
是否NTP服务器同步
timedatectl set-ntp yes
yum -y install ntp ntpdate
设置系统时间与网络时间同步
ntpdate cn.pool.ntp.org
删除30天以前的log文件
find /opt/soft/log/ -mtime +30 -name “*.log” -exec rm -rf {} \;
shell脚本测试:
测试脚本: sh -n ***.sh
检验脚本: sh -vx ***.sh
发表回复