Unix cheat sheet
Inspite of years of working on Unix and Linux I still wasn't confident if I knew enough and hence read it in these holidays and I see that we can get our way through these amazing OS using the below commands:- The OS uses the Filesystem to store data on the harddisk. They are different types of file storage, NTFS, FAT and etc. Commands to get your through! pwd ==> Prints the working directory you are in. ls ==> just to list the files and directories, flags -l => output in list format -a => show the hidden files -h => output is more human, that is easier to understand cd ==> Change directory find location -type f -name filename ==> to find the file that you have been looking for. parted for partitioning ext4 mkfs ==> to create filesystems echo $PATH ==> print the path env ==> to list the environment variables of ps -efl ==> to print the details of t...