¿Qué es el comando fetch en ubuntu?
fetch
No es un comando estándar en 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
Es probable que las instrucciones que está siguiendo hayan omitido mencionar algunos requisitos previos no estándar que deben instalarse primero.
No entiendo el significado del mensaje -bash: fetch: command not found
El comando shell, bash, le dice que no puede encontrar un comando llamado "fetch" o está informando un error devuelto por un comando fetch que sí encontró.
Este tipo general de mensaje de error puede ocurrir cuando el comando no existe o cuando es el nombre de un programa que no está en el actual $PATH
.
bash
(su shell) que el comandofetch
no existe. No está instalado (o instalado incorrectamente).