4

我有一个 shell 脚本,它在带参数的函数的上下文中获取第二个脚本:

#!/bin/bash
# bar.sh

function f()
{
   source foo.sh
   echo "Do something else with $1, after foo.sh is sourced."
}

f bar

和:

#!/bin/bash
# foo.sh

x=${1:-"default"}
echo $x

执行输出如下:

$ ./bar.sh 
bar
Do something else with bar, after foo.sh is sourced.

我期望得到default作为第一行输出而不是bar. 所以事实证明,即使我没有向 传递任何参数foo.sh,它也会从 function 的上下文中获取 $1 f。我可以通过阅读bash文档来理解这种行为,但是覆盖它的最佳方法是什么?

4

1 回答 1

3

编辑:根据您的评论和编辑的问题:

#!/bin/bash
# bar.sh

function f()
{
   # save $1
   arg1="$1"
   # unset $1
   shift
   # source your script; prints default
   source ./foo.sh
   # restore $1
   set -- $arg1
   # should print bar
   echo $1
   echo "Do something else with $1, after foo.sh is sourced."
}

f bar
于 2013-06-28T10:22:02.733 回答