script
bash script to change icon theme to check out all the installed themes (personal)
2010/05/19
I am really annoyed with the time that is required and the number of clicks that it takes to change the gnome icon theme. So here’s a small script that I wrote to quickly check out all the …
bash script to periodically change the cursor theme.
2010/05/07
#!/bin/bash [[ ”$1” == ”” ]] && time=5 || time=$1 [[ ”$2” == ”” ]] && ( cd ~/.icons …
Bugzilla Automation with perl — add, update or query any bug in Bugzilla using perl and www series modules for perl.
2010/04/11
Today I was trying to do some queries and see if I could create a new bug or update a existing bug in the Bugzilla. The one that I was trying to access was on version 2.0 and not on 3.0. This being …
bash script with sql to get the number of records from multiple tables.
2010/02/10
Here is the bash script: […] #!/bin/sh names[1]=errorlog names[2]=amit1log names[3]=amit2log names[4]=amit3log names[5]=amit4log j=1 echo $1 for i in $( sqlplus amit/passwd@tns @get_count.sql …
Seders\’s grab bag – Tutorials
2010/01/24
<a href="http://sed.sourceforge.net/grabbag/tutorials/">http://sed.sourceforge.net/grabbag/tutorials/ […] <a …
Script to generate a html file with link to all files in directory
2009/09/26
ls -1 |awk -F”.” '{print ” ”,$2,”.”,$3,” […] And if you want to do it recursively ls -1R |awk -F”.” …