bash命令

运行bash命令

#! /bin/bash
echo "hello"

第一种运行方式:
chmod +x test.sh
./test.sh


第二种运行方式:
/bin/bash test.sh
  
原文地址:https://www.cnblogs.com/crystal1126/p/14644283.html