天天看點

shell 腳本包含另一個 shell 腳本

腳本 first (測試示例1)

下面是第一個腳本:first #!/bin/bash

echo 'your are in first file'

方法一:使用source

#!/bin/bash

echo 'your are in second file'

source first

方法二:使用 .

#!/bin/bash

echo 'your are in second file'

. first   方法三:使用sh #!/bin/bash

echo 'your are in second file'

sh  first