- determine which shell software you're using
$ ps $$- change your shell software ( bash, zsh, csh, ... )
$ bash- print the bash version
$ bash --version- print the directory location of bash
$ which bash- print the current user name
$ whoami- print the current computer name
$ hostname- determine if a command or token is recognized by the shell
$ type [token]- read all tokens from stdin and prints them to stdout
$ echo- suppress the automatic new line with
echocommand
$ echo -n- print the current working directory
$ pwd- print the contents of the current directory
$ ls- print the contents of a relative path within the current directory
$ ls [relative path]- return to the parent directory
$ cd ..- return to the previous directory
$ cd -- return to current user's home screen
$ cdor
$ cd ~