Instalar comando env

1

Eu quero usar env , mas o Ubuntu me diz que não está instalado. Se eu tentar instalá-lo, o Ubuntu me diz que não há nada a fazer. Como consertar isso?

$ env
The program 'env' is currently not installed. You can install it by typing:
sudo apt install coreutils

$ sudo apt install coreutils
[sudo] password for jan: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
coreutils is already the newest version (8.25-2ubuntu3~16.04).
0 upgraded, 0 newly installed, 0 to remove and 25 not upgraded.

$ env
The program 'env' is currently not installed. You can install it by typing:
sudo apt install coreutils

$ ls -l /usr/bin/env
ls: cannot access '/usr/bin/env': No such file or directory
    
por Jan Weidner 07.12.2017 / 20:13

1 resposta

3

Se estiver realmente ausente, como a saída de ls indica, você poderá reinstalar o coreutils usando o comando sudo apt-get install --reinstall coreutils .

Isto irá simplesmente baixar o pacote e reinstalá-lo, sobrescrevendo quaisquer arquivos existentes e criando qualquer falta.

    
por vidarlo 07.12.2017 / 20:31