这是我的代码:
#!/bin/bash
if [[ -d ~/viwiki ]]; then
cd ~/viwiki
else
mkdir ~/viwiki
cd ~/viwiki
fi
if ! [[ -d ./log ]]; then
mkdir log
mkdir log/log
mkdir "log/wget"
elif ! [[ -d ./log/log ]]; then
mkdir log/log
elif ! [[ -d "./log/wget" ]]; then
mkdir "log/wget"
fi
运行的时候,出现错误:
tuankiet65@UbuntuPC:~$ sh viwik/test2.sh
viwik/test2.sh: 2: viwik/test2.sh: [[: not found
viwik/test2.sh: 8: viwik/test2.sh: [[: not found
我怎样才能解决这个问题?
答案1
我猜如果你跑
readlink -f $(which sh)
您不会得到 Bash 作为返回值,而是 Dash。您有正确的前言,但这仅在您./test2.sh
使脚本可执行后运行它时才重要。
现在您通过sh
解释器强制运行脚本,解释器可能是 Dash,并且[[]]
构造是 Bash 特定的。
这就是“为什么?”。如果您只是将双括号替换为单括号(并更改#!/bin/bash
为#!/bin/sh
,因为您的脚本现在只使用 POSIX 函数),它应该可以按预期运行。
Debian 上的演示,test.sh
内容如下:
#!/bin/bash
if [[ "string" == "string" ]]; then
echo This is Bash
fi
有时候是这样的:
$ readlink -f $(which sh)
/bin/dash
$ sh test.sh
test.sh: 2: test.sh: [[: not found
$ bash test.sh
This is Bash
$ chmod 755 test.sh
$ ./test.sh
This is Bash