Color output from ls – based on file type
2010/02/04
Threre are certain default variables which control the color of the output from the ls command, so we will talk about them today. The first one is to get the color output from the …
Crossfire game server.. free connection.
2010/02/04
I have setup a Free to use Crossfire game server. If you want to play the game, you can connect to amit.themafia.info For playing the game you would need the client to connect to it which you can …
Setting the title of PuTTY window.
2010/02/04
Setting the title for PuTTY window is quite a simple trick. The trick is to set the PS1 with a escape sequence. When the PS1 is set with the escape sequence the variable will set the title window …
Teddy on Desktop just for fun.
2010/02/04
People often complain that Linux users are mostly geeks. Does that seem to be true if you have a package that is just to display a teddy in the desktop. True, its completely true that Fedora has a …
Bash styling(themeing), the stylist way.
2010/02/04
For last couple of days, I have been looking for solutions to make stlying my bash easier. So, first a screenshot of the effort: <img class="size-full wp-image-703" title="bash …
Wallpaper designed by me with GIMP.
2010/02/04
Here’s the wallpaper, did not spend much time but I think this came out quite good. <a href="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/02/Untitled.jpg"><img …
Gentoo, Knoppix and Linux Console Screenshots
2010/02/03
Finally I decided to try a few distro’s that I downloaded with Beldi. […] <a href="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/02/gentoo.jpg"><img …
Installing Sofware on Linux, easier and finding alternates.
2010/02/03
There are already some great blogs on this, why write another one. Let me just point you to the best one <a …
Last access time for file
2010/02/03
The C program will print the last access time for the file. This is quite helpfull program when you want to find old files. Modifying the source to take the filename as argument and take multiple …
Built-in lists in vim
2010/02/03
<a class="zem_slink freebase/en/vimscript" title="Vimscript" rel="wikipedia" href="http://en.wikipedia.org/wiki/Vimscript">Vimscript provides excellent …
Understand Awk Variables with 3 Practical Examples
2010/01/28
<a id="aptureLink_gQhJKQ92Kn" style="padding: 0px 6px; float: left;" href="http://www.gnu.org/software/gawk/manual/gawk.html"><img style="border: 0px …
Quickly search and replace string with Regular expression in multiple files using perl
2010/01/27
for i in *; do perl -p -w -e ’s/a(.*)b.*/d$1e/g’ $i > temp/$i; done for i in *; do perl -pi -w -e ’s/a(.*)b.*/d$1e/g’ $i ; done […] The first one can …