Loading...
在shell脚本的开头往往有一句话来定义使用哪种sh解释器来解释脚本。目前研发送测的shell脚本中主要有以下两种方式:\#!/bin/sh\#!/bin/bash脚本test.sh内容:#!/bin/sh source pcy.sh #pcy.sh并不存在 echo hello执行./test.sh,屏幕输出为:./test.sh: line 2: pcy.sh: No such file...