我的整個腳本是目前這樣的:獲得 「命令未找到」 錯誤而猛砸
#!/bin/sh
clear;
blanko="";
# Dummy-Variablen
variable=Testvariable;
if [[$variable == $blanko]];
then
echo "Nichts da!"
else
echo $variable
fi
,如果我進入
TestSelect.sh
我得到
/usr/bin/TestSelect.sh: line 6: [[Testvariable: command not found
Testvariable
我怎樣才能解決這個問題?
提示:[shellcheck(http://www.shellcheck.net)會自動指向解決這個問題和其他基本問題。 –
謝謝,通過我所有的搜索,我沒有找到這個網站。 :-) – EpsilonAlpha
另一個指針:如果你在一行中放置_multiple_語句,你只需要一個語句終止';'。 – mklement0