我正在安装 RISCVde 工具链。我发现我总是想念安装。
当我输出 echo $RISCV 时,它指向一个空目录。我看到它是在 /etc/profile 文件中定义的:
export RISCV=/opt/riscv-toolchain
export PATH=$RISCV/bin:$PATH
我怎样才能取消它?
我想判断一个字符串是否在数组中。我在谷歌上找到了以下功能。但是我不能完全理解这个函数的含义。在这个函数中,match
被分配给要匹配的字符串。但是数组保存在哪里?我添加了一些输出,变量e
始终为空。我检查了 的含义shift
。它将变量向左移动并移动$2
到$1
。但是$1
后面就没用了。有谁知道这个功能是如何工作的?非常感谢。
containsElement () {
local e match="$1"
echo $match
echo $e
shift
echo $e
echo $match
for e; do [[ "$e" == "$match" ]] && return 0; done
return 1
}
array=("something to search for" " for" "a string" "test2000")
containsElement "a string" "${array[@]}"
echo $?