Recently I found myself calculating interest and interest duration, I heaven’t found any decent tool for this so I did one by myself in C++. It does nothing else but prints the numbers you were […]
Month: April 2013
Multiple rename in bash
In case you are wondering how to rename multiple files in bash here is an idea: for file in ?????*; do mv $file `echo $file | cut -c4-`; done Whit this you can cut 4 […]