curl --upload-file uploadfile http://www.example.com/receive.cgi
From : http://curl.haxx.se/docs/httpscripting.html
From : http://curl.haxx.se/docs/httpscripting.html
find FILE OR REGEX -exec xzgrep -l "PATTERN OR REGEX" {} \;
Find the file, and then search, even compressed files.
for i in *.avi; do j=`echo $i | sed 's/find/replace/g'`; mv "$i" "$j"; done
From: http://snipplr.com/view/2736/