Below is a list of Linux Commands and examples of their use, for more information see the man page of each command:
Ex:
$ cat some_file_here
Ex:
$ cd /some/directory/here
Ex:
$ chgrp <new group> /some/file/here
Ex:
$ chmod <mode/permissions> /some/file/here
$ chmod 0721 my_file.c
$ chmod u+rwx my_file.c
$ chmod g-rx my_file.c
Ex:
$ chown <new owner> /some/file/here
Ex:
$ echo <some text here>
Ex:
$ grep <some string here> <some file here>
Ex:
$ ln /some/file/here /some/alias/here
$ ln -s /some/file/here /some/symbolic/link/name/here
Ex:
$ ls /some/directory/here
Ex:
$ mkdir /some/new/directory/here
Ex:
$ mkfifo /some/new/named/pipe/here
Ex:
$ pwd
Ex:
$ rm some_file_here
Ex:
$ rmdir /some/directory/here
Ex:
$ echo hello | tee /some/file/here
Ex:
$ touch some_file_here
Ex:
$ wc /some/file/here