bash

  1. Andy

    How to clear bash history without leaving any trace

    In some occasion, if you don't want to leave any trace on what you've done on your Linux bash console or terminal or SSH client, use the following command: history -c && history -w && exitThe command above clears any history, writes an empty value of history (since it was cleared) and exits the...
  2. Andy

    -bash: ll: command not found [Solved]

    Did you get ll: command not found error in SSH session? If yes, then read on how to fix it in less than one minute. Reason for ll: command not found error In SSH session of Linux system, often times you want to get listing of files inside a directory, and it’s most convenient to have each file...
Back
Top