如果语句不能在Bash中使用字符串和子字符串

时间:2017-05-25 21:17:02

标签: bash

我有一个比较字符串的脚本的简单部分:

if [[ "$port" = "Bluetooth PAN" ]]; then
  echo "caught"
elif [[ "$port" = "Thunderbolt "* ]]; then
  echo "caught Other"
else

"抓"当端口设置为" Bluetooth PAN"

时打印

当端口设置为" Thunderbolt 1"虽然,"抓住了其他"没有打印。有人可以告诉我为什么吗?从在线搜索中,*用于搜索子字符串。但是我所拥有的并没有奏效,而且该计划继续进入其他方面。

0 个答案:

没有答案