源函数中的文件采用函数参数

时间:2013-06-28 09:55:29

标签: bash shell

我有一个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传递任何参数,它也会从函数f的上下文中获取1美元。我可以通过阅读bash documentation来理解这种行为,但是覆盖它的最佳方式是什么?

1 个答案:

答案 0 :(得分: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