Pages

Wednesday, November 21, 2012

how to cross compile openssl

http://openssl.6102.n7.nabble.com/cross-compiling-questions-td21307.html

how to escape $(dollor sign) in makefile


to escape $ sign in Makefile, you will have to use double dollor sign. i.e

$$ will be interpreted as "$"

Tuesday, November 20, 2012

sed search lines and comment out or uncomment



comment out..


             sed '/pattern/s/^/#/' 

uncomment out...
             sed '/pattern/s/^/# *//'

Wednesday, November 7, 2012

Friday, November 2, 2012