如果“重击“有效,为什么是”来源“抛出错误?

如果“重击“有效,为什么是”来源“抛出错误?

我有以下脚本:

#!/bin/bash
set -x
if :; then
    echo a
fi

如果我运行bash /tmp/file,a会得到回显,但如果我运行source /tmp/file, 我得到:

bash: /tmp/test: line 6: syntax error: unexpected end of file

输出:

knezi@holly tmp]$set -x; source /tmp/test; set +x
+ source /tmp/test
++ set -x
bash: /tmp/test: line 6: syntax error: unexpected end of file
+ set +x

knezi@holly tmp]$set -x; command source /tmp/test; set +x
+ set -x
+ command source /tmp/test
+ source /tmp/test
++ set -x
bash: /tmp/test: line 6: syntax error: unexpected end of file
+ set +x

knezi@holly tmp]$bash -c "source /tmp/test"
+ bash -c 'source /tmp/test'
++ :
++ echo a
a


knezi@holly tmp]$od -c /tmp/test
0000000   #   !   /   b   i   n   /   b   a   s   h  \n   s   e   t    
0000020   -   x  \n   i   f       :   ;       t   h   e   n  \n  \t   e
0000040   c   h   o       a  \n   f   i  \n
0000051

命令的输出shopt -pset -ohttp://pastebin.com/bsqc8aru

输出sethttp://pastebin.com/S9KpqZAL

declare -fp什么也不产生。

我认为这source与 相同bash,但不是开始新会话,而是在当前会话中运行代码。谁能向我解释这个错误?

我运行 bash GNU bash,版本 4.2.53(1)-release (x86_64-redhat-linux-gnu)。

答案1

如果我使用别名,我可以重现您的行为fi

$ alias fi=:
+ alias fi=:
$ . ./test
+ . ./test
++ set -x
bash: ./test: line 6: syntax error: unexpected end of file

它在执行时有效,但在获取它时失败,因为别名在非交互式 shell(运行 shell 脚本的 shell 类型)中不可用。正如中所解释的bash 手册:

当 shell 非交互式时,别名不会扩展,除非 expand_aliases使用 shell 选项设置shopt(请参阅内置商店)。

但是,当您source执行某些操作时,它会在当前的 shell 中运行,因为它是交互式的,所以已经加载了别名,因此fi别名会被识别并中断源。

相关内容