Sreenadh wrote 1 hour ago: If you want to know the total number of lines of files in a directory, execute the following line of … more →
Sreenadh wrote 2 hours ago: To know the count of files of a particular type in a directory find . -name “*.png” | wc … more →
zubin mehta wrote 12 hours ago: #!/bin/bash # Store this file with whatever the name in /usr/local/bin/ # SYNTAX: twit Your_message … more →
joyseeker1960 wrote 14 hours ago: Wow!! 40 days of playing the game now. So far I have managed to spend $780,000…after today I will … more →
harikris2000 wrote 1 day ago: To retrieve gnome-panel to default if deleted (in etch) or from a customized one (in lenny atleast o … more →
Ali MEZGANI wrote 2 days ago: First you need to assign the variables with the -v option: The option -v followed by var=value is an … more →
orgelv wrote 2 days ago: That’s right, I said it, I am a n00b. A Linux n00b that is. And this is my life. The Life…of orge … more →
Alexander Mendez wrote 2 days ago: There was some code hiding on the launchpad.net site, and they use Bazaar, so I thought I would chec … more →
putnam120 wrote 3 days ago: Well as promised it is time to explain parts of my script. Well I shall start at the beginning. The … more →
Sreenadh wrote 4 days ago: Steps to migrate SVN repository. svnadmin dump <location_of_old_repo> > dump_filename svnad … more →
dozykraut wrote 4 days ago: Today: A filter for URI encoding / decoding The script introduced in this post will read input fro … more →
ricoch3n wrote 4 days ago: This is the bash script that I wrote a while ago to control the Aleratec Roboracer CD/DVD Duplicator … more →
Sreenadh wrote 4 days ago: To rebuild Debian package (.deb) from an installation apt-get install dpkg-repack dpkg-repack <pa … more →
Sreenadh wrote 4 days ago: To remove a service (daemon) from all runlevels. update-rc.d -f remove <service_name> Eg: upda … more →
Sreenadh wrote 4 days ago: To remove all lines containing a string sed ‘/<Text_to_search>/d’ <filename> … more →
Sreenadh wrote 4 days ago: To display the lines of a file which does not contain a particular string. grep -v <string_to_sea … more →
Sreenadh wrote 4 days ago: To replace first occurance of a string with sed sed ’s/<string_to_search>/</string_to … more →
Sreenadh wrote 4 days ago: To hide user input such as passwords stty -echo to turn ON stty echo … more →