Category: Linux
Package Listing in Debian
July 16, 2008
Show space used by deb packages installed sorted by size (ubuntu, debian and like) dpkg-query -W -f='{Installed-Size;10}t{Package}n’ | sort -k1,1n
Remove SVN Info from a Folder
July 7, 2008
This command removes the SVN data from a folder. find -name .svn -exec rm -rf {} \;
Fetch a URL With a Number Series
July 3, 2008
Use this command to download numbered content… for ((i=1; i
Zero Padding In Linux Commands
July 2, 2008
This is how you zero pad a numerical variable in bash. for ((x=1;x<=31;x+=1)); do echo `printf “%02d” $x`; done Original…
Recent Comments