shell
bash completion
2011/08/09
I was working on some functions in bash to make my life easier and realized that if I added custom completion to my functions, it will be really good. So I headed over to google and searched for what …
Installing Full Blin g theme on N900
2011/08/03
I was going through the post : http://talk.maemo.org/showthread.php?t=46739 and found the theme quite intruging but not complete to the point where I can download the deb file and install it in …
faster bash operations on files with File Descriptors.
2011/06/11
I was writing a bash script that would do some operations and read and write to file. Seems that that was pretty simple with […] <td> <div class="text codecolorer"> while …
Unix shell script for removing duplicate files
2011/05/16
The following shell script finds duplicate (2 or more identical) files and outputs a new shell script containing commented-out rm statements for deleting them (copy-paste from here): ::: updated on 02 …
cd across parallel directories
2011/03/14
Image via Wikipedia […] Here is a simple and fast way to cd across parallel directory.
some bash exercise for you
2011/02/15
Here is some teaser for you, can you figure out how this works:
Ranking of the most frequently used commands
2011/01/31
Lets take a quick look at how to get the most frequently used commands on you shell. So what we need to do is this: […] <td> <div class="text codecolorer"> history | awk …
shopt causes bash completion to stop working.
2011/01/25
Couple of days, I added some scripts to my bash startup and suddenly realized that bash completions stopped working. This is tricky situation in bash to figure out what went wrong. So, I set my foot …
Shell Scripting
2011/01/05
Here are some links for bash programming that you may find useful. http://tips-linux.net/en/content/pro-bash-programming http://tips-linux.net/en/content/expert-shell-scripting …
Empty a file
2010/12/26
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;"> Image via <a …
Bash Script Beautifier
2010/12/23
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;"> Image via <a …
Make any command read line enabled (on *nix)
2010/11/25
Make any command read line enabled (on *nix) […] <td> <div class="text codecolorer"> rlwrap sqlite3 database.db </div> </td> </tr> Enable readline even …