Command Hints
Linux supports command line editing.
Linux has a history list of previously used commands (stored in _.bash_history_in your home directory).
-use the keyboard arrows to scroll through commands you've already typed.
Linux commands and filenames are CASE SENSITIVE.
Learn output redirection for stdout and stderr “>” and “2>”.
Linux uses “/” for directories, DOS uses “\”.
Linux uses “-“ for command options, DOS uses “/”
To execute commands in the current directory (if the current directory is not in your PATH), use the syntax "./command". This tells Linux to look in the present directory for the command.