InterviewSolution
Saved Bookmarks
| 1. |
A User Is New To Linux And He Wants To Know Full List Of Available Commands, What Would You Suggest Him? |
|
Answer» A command ‘compgen c’ will show a FULL LIST of AVAILABLE commands. [root@localhost ~]$ Compgen -c l. ll ls which if then else elif fi case esac for while until do done ... A command ‘compgen c’ will show a full list of available commands. [root@localhost ~]$ Compgen -c l. ll ls which if then else elif fi case esac for select while until do done ... |
|