O que é o comando fetch no Ubuntu?

0

Eu tentei instalar o webrtc-streamer na minha placa baseada em ARM chips AM4372 (Ti). Preciso executar

fetch webrtc

Eu executei este comando e o seguinte erro ocorreu. Eu não entendo o significado da mensagem. por favor, explique o que é o comando fecth.

"-bash: fetch: command not found"
    
por AAAAA RRRR 27.06.2018 / 10:36

1 resposta

1

What is fetch command on ubuntu?

fetch não é um comando padrão no 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

É provável que as instruções que você está seguindo tenham omitido alguns pré-requisitos não padrão que devem ser instalados primeiro .

I don't get the meaning of the message -bash: fetch: command not found

O shell de comando, bash, está lhe dizendo que não pode encontrar um comando chamado "fetch" ou está reportando um erro retornado por um comando de busca encontrado.

Esse tipo geral de mensagem de erro pode ocorrer quando o comando não existe ou quando é o nome de um programa que não está no atual $PATH .

    
por 27.06.2018 / 11:50

Tags