Linux command 'll' is not working

前端 未结 6 1005
一整个雨季
一整个雨季 2021-02-18 19:08

I am able to run ll command with my user but not with sudo, it giving me error as command not found!

6条回答
  •  灰色年华
    2021-02-18 19:25

    I am quite late, but ... In Debian 10 the command ll is commented (#).

    To make ll available just change yourr .bashrc file:

    su gedit .bashrc

    After in your text editor uncommnet as you wish:

    # some more ls aliases alias ll='ls -l' #alias la='ls -lA'

    Do not forget to restart your terminal emulator.

提交回复
热议问题