ubuntu 上的 fetch 命令是什么?

ubuntu 上的 fetch 命令是什么?

我尝试在基于 AM4372(Ti)chips ARM 的主板上安装 webrtc-streamer。我需要执行

fetch webrtc

我运行了此命令,然后出现以下错误。我不明白该消息的含义。请解释一下 fecth 命令是什么。

"-bash: fetch: command not found"

答案1

ubuntu 上的 fetch 命令是什么?

fetch不是 Ubuntu 上的标准命令。

$ cat /etc/os-release
NAME="Ubuntu"
VERSION="14.04.5 LTS, Trusty Tahr"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 14.04.5 LTS"
VERSION_ID="14.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"

$ type time
time is a shell keyword

$ type ls
ls is aliased to `ls --color=auto'

$ type git
git is /usr/bin/git

$ type fetch
-bash: type: fetch: not found

很可能您正在遵循的说明忽略了提及必须首先安装的一些非标准先决条件。


我不明白这条信息的意思-bash: fetch: command not found

命令 shell bash 告诉您它找不到名为“fetch”的命令,或者它报告了它找到的 fetch 命令返回的错误。

这种 一般 的 错误 信息 可能 会 出现 时 , 该 命令 不存在 , 或者 当 它 是 一个 程序 的 名称 , 而 不是 当前 目录$PATH.

相关内容