Unix Cheat Sheets and Tricks
While Unix is an extremely flexible, powerful, and stable operating system, mastering it can require apprenticing yourself to an expert and monitoring every keystroke. This article will hopefully grow as others add their favorite Unix tricks.
- Cheat Sheets
-
Tricks and Techniques
- find files owned by group xxxx: {color:red}. find . -group xxxx -print
- find files owned by user xxxx:
find . -user xxxx -print
This article was originally posted on the UCLA Programmers Wiki.