Skip to main content

Posts

Showing posts from 2012

Part-time courses from IIIT Hyderabad

Let me paste here some details of the PGSSP course offered by IIIT-H for the working professionals in Hyderabad, and on the future route that one may wish to take (either a MTech, MS, or PhD). I had written this to one friend who was interested in PhD, but I feel that the same should give anyone (a working professional, looking for a part-time course) a good idea about the PGSSP programme, and a later MTech/MS, as well. [Disclaimer: The information and the opinion presented here are based on my personal opinion and experience. While I have tried to be as correct and unbiased as possible, the following can not be taken as the ultimate or the final word or information for the part-time courses offered by IIIT Hyderabad. For official information, please go to iiit.ac.in and also enquire from IIIT-H's admission office before taking any decision. ] Q. The offer says that u have to enroll in few courses max of two per semester. Does this course offer a degree of Master? If...

Useful commands and howtos at your finger tips

Useful commands and howtos at your finger tips linux | unix | dos | windows | mac jdk | regex |... 1. How to find files and operate some command on that file list Example (a) Find all files updated within the last 11 minutes, and copy them to another directory: find . -mmin 11 -exec cp '{}' /home/temp/ \; 2. How to read a file line by line through a unix/linux shell script http://www.bashguru.com/2010/05/how-to-read-file-line-by-line-in-shell.html 3. How to extract only the file names after you have figured out which files from the ls -ltr listing Assume filelist.txt contains the ls- ltr output redirected cat filelist.lst -rw-r-----  1 oraxxxx emsxxxx     2119 Dec  5 02:50 sid_ora_5565.trc -rw-r-----  1 oraxxxx emsxxxx    11591 Dec  5 02:50 sid_ora_24464_TEST.trm -rw-r-----  1 oraxxxx emsxxxx   469796 Dec  5 02:50 sid_ora_5565_TEST.trc -rw-r-----  1 oraxxxx emsxxxx ...