0

bash : ll command not working on server

Hello, i have some set of servers there i will use a command ll to list files in details similar to ls -l command, but the command is not working on one server, i got ll command not found error.

CentOS Bash Add a comment
hobbs
asked Apr 21 2018

Answer

0

You need to edit .bashrc file and set alias for that command

vim .bashrc
alias ll = 'ls -l'

then run below command

source .bashrc
Add a comment
parthiban
asked May 08 2018
edited Oct 05 2018
Post your Answer