UNIX BASICS
$ ls -la
list all files including hidden files in current directory
$ ls *.txt
list all files that end with .txt in current directory
$ ls -R *.txt
list all files that ned with .txt in current directory and all children directories
$ pwd
print working directory
$ cd images
change directory to images directory
$ cd ~
change to user home directory Continue reading Common Unix Commands