Bootstrap

对shell脚本赋予可执行权限

  • 对1.sh文件赋予可执行权限:
chmod u+x 1.sh
  • 对文件夹下所有shell文件赋予可执行权限:
chmod u+x *.sh
;