Educating yourself does not mean that you were stupid in the first place; it means that you are intelligent enough to know that there is plenty left to 'learn'. -Melanie Joy

Saturday, 26 January 2013

dbx: Error checking initialization failed ??

January 26, 2013 Posted by Dinesh , , , ,
How to Run:                            dbx <binaryname> Enabling access checking :   in dbx prompt enter :  check -access Enabling memory leak checking: in dbx prompt enter: check -memuse Enable all checks :  in dbx prompt enter : check -all once this is done use run command with appropriate ...

Thursday, 10 January 2013

Extract particular lines from a file using 'sed'

January 10, 2013 Posted by Dinesh , , No comments
1. Extract Using Line Numbers : 1 2 3 sed -n '10'p <filename> #Prints 10th line of file sed -n '10,20'p <filename> #Print lines 10 to 20 sed -n '10,$'p <filename> #Print lines 10 to end $ sed -n '10'p file is equivalent to   $ sed '10!d' file and results Line 10 The default output behavior is to print every line of the...

Saturday, 5 January 2013

Useful aliases in Shell

January 05, 2013 Posted by Dinesh , , No comments
Like 'ddd' , we can see the code while debugging with gdb too ...  Set the '-tui' flag for gdb to enable this feature. and '-quiet' will suppress copyright messages.           alias gdb='gdb -tui -quiet' Read as many as possible without scrolling alias...