本文介绍了如果比较字符串获得"找不到命令" - 错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

目前我的整个剧本是这样的:

My whole Script is currently this:

#!/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

我怎样才能解决这个问题?

how can i fix this?

推荐答案

这是问题:

if [[$variable == $blanko]];

空格是必需的方括号中,使用这样的:

Spaces are required inside square brackets, use it like this:

[[ "$variable" == "$blanko" ]] && echo "Nichts da!" || echo "$variable"

这篇关于如果比较字符串获得"找不到命令" - 错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 16:51