首页 > 解决方案 > 找不到 Bash 引号命令

问题描述

我从这里https://kite.com/linux/在我的 ubuntu 18.04 上复制并运行了命令, 但出现如下错误:

$ bash -c “$(wget -q -O – https://linux.kite.com/dls/linux/current)”
bash: “”: command not found
$ type quote
quote is a function
quote ()
{
    local quoted=${1//\'/\'\\\'\'};
    printf "'%s'" "$quoted"
}

错误的任何建议?

标签: bash

解决方案



推荐阅读