我想测试bash脚本的输出,当它依赖的其中一个可执行文件丢失时,所以我想运行该脚本的依赖项“hidden”而不是其他。 PATH= ./script
不是一个选项,因为脚本在到达我想要测试的语句之前需要运行其他可执行文件。有没有一种方法可以在不改变文件系统的情况下从脚本中“隐藏”可执行文件?
对于一个具体的例子,我想运行this script但是隐藏git
可执行文件(这是它的主要依赖项),以便我可以在这些条件下测试它的输出。
答案 0 :(得分:6)
您可以使用内置命令hash:
hash [-r] [-p filename] [-dt] [name]
每次调用哈希时,它都会记住指定为名称参数的命令的完整路径名,因此无需在后续调用中搜索它们。 ... -p选项禁止路径搜索,filename用作名称的位置。 ... -d选项导致shell忘记每个名称的记忆位置。
通过将不存在的文件传递给-p
选项,就好像无法找到命令一样(尽管仍然可以通过完整路径访问它)。通过-d
撤消效果。
$ hash -p /dev/null/git git
$ git --version
bash: /dev/null/git: command not found
$ /usr/bin/git --version
git version 1.9.5
$ hash -d git
$ git --version
git version 1.9.5
答案 1 :(得分:4)
添加名为git
git() { false; }
那将“隐藏”git命令
要复制@ npostavs的想法,你仍然可以使用command
内置的“真实”git:
command git --version
答案 2 :(得分:1)
由于我们知道程序在bash中运行,因此一种解决方案是 - 而不是"隐藏"程序 - 在这种情况下模拟bash的行为。我们可以很容易地找到bash在命令找不到时所做的事情:
$ bash
$ not-a-command > stdout 2> stderr
$ echo $?
127
$ cat stdout
$ cat stderr
bash: not-a-command: command not found
然后,我们可以将此行为写入具有可执行文件名的脚本,例如问题的示例中的git
:
$ echo 'echo >&2 "bash: git: command not found" && exit 127' > git
$ chmod +x git
$ PATH="$PWD:$PATH" git
$ echo $?
127
$ cat stdout
$ cat stderr
bash: git: command not found