当前脚本文件中调用另外一个脚本
脚本 first.sh
代码:
#!/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
1、因为很少登录,评论基本没有回复,见凉!
2、如果转载我的文章,请写明出处,谢谢!
3、有些文章为转载,如果您发现侵权,请联系删除,但回复可能需要较长时间