方法有三种: 1 使用source 2 使用 . 3 使用sh 简单实验: first.sh #!/bin/bashecho 'your are in first file' second.sh #!/bin/bashecho 'your are in second file' source first.sh // . first.sh // sh first.sh 执行结果: your are in second fileyour are in first file 现在讨论关于参数传递: f