私のスクリプト全体は現在これです:
#!/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
どうすればこれを修正できますか?