摘要:
查看根分区下哪个目录文件数最多 for i in /*; do echo $i; find $i | wc -l; done 如果是export的可以根据export的目录一级一级查询下去 for i in /export/*; do echo $i; find $i | wc -l; done 删 阅读全文
摘要:
python3.6环境安装 #!/bin/bash # utf-8 # desc : install Python-3.6.5 and python dependency source /etc/profile &> /dev/null yum install bzip2-devel xz-deve 阅读全文