You can add any commands or improve existing one However, you must follow the current pattern is:
find . -name MY_FILE_PATTERN | xargs grep 'MY_STRING'
find . -name "MY_FILE_PATTERN" -exec grep -l MY_STRING {} ;
find string in file and give, with, before each file name, the number of time the MY_STRING appears in the file
find . -name "MY_FILE_PATTERN" | xargs grep 'MY_STRING' | awk -F: '{print $1}' | uniq -c
less on a source file with syntax highlighting (need highlight : http://www.andre-simon.de/doku/highlight/en/highlight.html)
highlight -l -A SOURCE_FILE | less -R
find . -ipath './MY_DIRECTORY/FOOBAR//.MY_EXTENSION' | xargs grep 'MY_STRING'
gedit find . -ipath './MY_DIRECTORY/FOOBAR/*/*.MY_EXTENSION' | xargs grep 'MY_STRING' | awk -F: '{print $1}'
find . -ipath './MY_DIRECTORY/FOOBAR//.MY_EXTENSION' -exec perl -pi -e 's/MY_ORIG_STRING/MY_REPLACED_STRING/' {} ;
find . -ipath './merlin-data/src//.xml' -exec perl -pi -e 's/http://hibernate.sourceforge.net//http://www.hibernate.org/dtd//' {} ;
perl -p -i -e 's/relativePath>../relativePath>../../g' find ./ -name pom.xml
$ find . -name .DS_Store -delete
#Find all those pesky files above 20mb find . -size +20000k -exec du -h {} ;
sudo cdrecord blank=all -immed dev=/dev/cdrw
mount -o loop -t iso9660 file.iso /media/iso
ffmpeg -i mandelbrot.flv -vn -acodec copy mandelbrot.mp3
CTRL + W
CTRL + U
CTRL + D
CTRL + R
CTRL + L
Change under ubuntu the default color of directory that is other-writable (o+w) and not sticky, see: http://www.bigsoft.co.uk/blog/index.php/2008/04/11/configuring-ls_colors
echo "OTHER_WRITABLE 01;34" > ~/.dircolors
notify-send "Title" "This is a message"
Keep Left Alt & Print Screen pressed, then R, S, E, I, U, B (Raising a Skinny Elephant Is Utterly Boring)
for i in find MY_DIRECTORY -type l
; do [ -e $i ] || echo $i is broken; done
sudo dmidecode -s bios-version
xkill #And squeeze the trigger
xrandr --output HDMI1 --right-of LVDS1