Category Archives: scripting

IMDB movie fetcher version 4

Update : Released 4.1 with cast/director/rating code update.

I am happy to announce the version 4 of IMDB movie fetcher. This release contains two new features and many bug fixes. This release adds colored output and “similar title” suggestions.

Installation

Arch Linux

Arch Linux aur package is here . Download it and follow below steps

wget [--right click the above here link and copy paste the url here--]

tar zxvf imdbmoviefetcher.tar.gz

cd imdbmoviefetcher

makepkg -s

sudo pacman -U imdbmoviefetcher-4.0-1-any.pkg.tar.xz

Continue reading

Share

Configuration file to input values in bash script

Most of the time bash script need user input values to generate the data that is presented to user. There are many ways to accept user data in bash like reading data interactively, getting from parameters etc. But there are some situations where bash always need a set of data to generate the output. It will be a burden on the user to input the same data again and again, each time he executes the script. In that situations, storing the value in a configuration file will help. That file can be edited by user, if he requires to pass another set of data. You can see this concept in the BSD style init scripts, were boot parameters are stored in a centralized file like rc.conf.

Today I faced a problem with the script in which I was trying to produce colorized output based on the user preferences. It is unnecessary to ask user each time for his color preference. Instead of that he can just put the input in a configuration file and ask the script to read it. Another option is to hard code the color values in the script itself, but that will make it difficult for the user, if he want to change the color preference later. Continue reading

Share