ypcat.
ypcat passwd | grep [username] > crackme.txt
cuts through all the shadowing you can think of.
You must be used to working in a .edu environment, vsloathe! I haven't seen NIS anywhere since...oh...1999. LOL
Here's a quick run-down on "find":
find . -iname "*foo*" -exec grep -H "phrase_ur_lookin_4" {} \;
Finds all files, ignoring case (-i) with "foo" in the name (including the path) and displays with the filename (-H) lines with "phrase_ur_lookin_4". "-iname" is a GNU find feature, it's not present in the native Solaris (and maybe other OSes) version of find.
find . ! -newer "filename_w_timestamp" -exec rm {} \;
Find all files which are older (! -newer meaning "NOT newer") than the file "filename_w_timestamp" (doesn't need to be in quotes if there's nothing that needs escapes) and removes (rm) them. Yes, it's recursive. Use "depth" to make it not recurse. Best to test first with:
find . ! -newer "foo.file" -exec ls -altd {} \;
"-newer" refers to last file modification time. There's also "-anewer" for access time, and "-cnewer" for changed time (tho I don't know the diff between mod time and change time...will have to look that up.

UNIX is such a twisty path).
Find commands can be logically connected:
find . -iname "*somefile*" -or ! -newer "foo.file"
Lists all files with name containing "somefile" (case insensitive) of modification time older than "foo.file".
find . -name "SOMEfile" -and -newer "foo.file"
Lists all file with name containing "SOMEfile" (exact case) and that are newer than "foo.file"
I use find a lot 'cause I can't remember paths worth shizzle, and Linux doesn't put them in the places I learned first--Solaris.

Another one I've learned lately:
recode -v latin1..utf8 ~/wordpress_db.sql
You still have to edit the sql dump and search/replace latin1 with utf8 after the recode before you restore it. Recoding is necessary because the default install of MySQL uses latin1 collation, which causes your db & table collation to be latin_swedish_ci. What dumbass thought that was the right way to build MySQL?

=RT=