Month: July 2008

Set Time

Set date and time – MonthDayhoursMinutesYear.Seconds date 041217002007.00

Full Year Calendar

Show the calendar of 2008 cal 2008

Show Interrupts

Show interrupts cat /proc/interrupts

Remove a Folder from Git

Remove a given folder from a Git repository… git rm -r cache/

Show file swap

show file(s) swap cat /proc/swaps

Remove SVN Info from a Folder

This command removes the SVN data from a folder. find -name .svn -exec rm -rf {} \;

NIC Card Configuration

Show configuration of an ethernet network card ifconfig eth0

Fetch a URL With a Number Series

Use this command to download numbered content… for ((i=1; i

Zero Padding In Linux Commands

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…