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.

hobbs
asked Apr 20, 2018
1 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
View More
parthiban
answered May 8, 2018
Your Answer
||||
 
100:0