Shell tips
- set -e含义:
在这行代码之后的任何代码,如果返回一个非0值,那么整个脚本立即退出,官方说明是为了防止错误出现滚雪球的现象。[转自: segmentfault] - 删除空目录:
-
find ./ -empty -type d -delete
- 获得计算机cpu的个数:
cat /proc/cpuinfo | grep processor | wc -l
find ./ -empty -type d -delete
cat /proc/cpuinfo | grep processor | wc -l