Tag Archives: bash

Post Pidgin and Twitter status from command line

I often want to post the same status message in Pidgin and Twitter. I wrote  simple bash script to accomplish this. One can download the script from here: http://www.spsneo.com/scripts/poststatus.tar.gz How to use it – 1) Change the permission of the … Continue reading

Posted in bash, Linux, microblogging, Pidgin, Twitter | Tagged , , , , , , | 4 Comments

Bash History Tips and Tricks

Bash supports history expansion feature which can be very useful for powerful command-line users. According to bash manual page – History  expansions introduce words from the history list into the input stream, making it easy to repeat commands, insert the … Continue reading

Posted in bash, Linux, Man pages | Tagged , , | Leave a comment

Extract all Archive File Format With Just One Command in Linux

There are large number of archive file formats – .zip, .tar.gz, .tar, .gz, .7zip, .rar, etc etc.. I find it difficult to remember the command line options for extracting different archive file formats. So, I wrote a bash function which … Continue reading

Posted in bash, Linux, Uncategorized | Tagged , , | 6 Comments

Directory Navigation Tips in Linux

Many of us just use cd, cd .., cd <dir> to navigate through the file system in Linux. Directory or file-system navigation can be simplified by using following commands – 1) Many times we are in some directory say /home/user/foo … Continue reading

Posted in bash, Linux | Tagged , , , , | 5 Comments