The Dogs

This is a picassa album created a few months ago of our dogs.  These pictures include Star, Vixen (R.I.P) and Roxi.  

How to Change Date in Unix

The example below illustrates how to change the time in Unix

date 032610502011

This will set the date to March 26th 2011, 10:50am

 

How to Change Time in Unix

The example below illustrates how to change the time in Unix

date +%T -s “15:00:00″

Get count of files or directories in Unix

Within your current directory, you can get a count of files or directories by invoking one of the following commands

Get count of all files within directory/subdirectories:

find . -type f | wc -l

Get count of directories within directory/subdirectories

find . -type d | wc -l

How to Find Files in Unix within a certain time range

 

Find all files with an xml extension in this directory or subdirectories:

find -iname “*.xml”

Find all files with an xml extension in this directory or subdirectories whose modified time is within the last 3 hours:

find -iname “*.xml” -mmin -180

Find all files with an xml extension in this directory or subdirectories whose modified time is greater than the last 3 hours

find -iname “*.xml” -mmin +180

Find all files with an xml extension in this directory or subdirectories whose modified time is within the last 8 hours and greater than the last 3 hours

find -iname “*.xml” -mmin +180 -mmin -480

G.I. Joe PSA Parody Part 2 {NSFW}

Special thanks to KRETO for showing me these hilarious G.I. Joe videos!

G.I. Joe PSA Parody Part 1 {NSFW}

Special thanks to KRETO for showing me these hilarious G.I. Joe videos!

Crazy Guy Makes a Fool of Himself on a Dating Video

This video didn’t technically come from Youtube, but I figured he was such a catch, this video is worth a mention.  Interested, ladies?  :)

Mr. T. – Treat Your Mother Right

Here is Mr. T. hittin’ you with some values in a rap from back in the day

Mississippi Braves Coach Goes Crazy After Being Ejected

This crazy minor league coach has a meltdown after he’s ejected.

Return top