Technical Tips

MySQL Tips

Upload a file with insert statements:

$MYSQL_HOME/bin/mysql --user=root --database=FANGORN --quick < /opt/apps/spend/fangorn/ksm_kb_clean.txt

 

SED Tips

To replace a String globally in all the places in a file:

sed -e 's/String1/String2/g' infile.txt > outfile.txt

 

AWK Tips

 

 

Back To Home Page