Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Doctor Q

Administrator
Original poster
Staff member
Sep 19, 2002
40,104
8,383
Los Angeles
For those who are interested in learning more about writing Unix-style shell scripts under Mac OS X, Apple has authored a Shell Scripting Primer.

You can read it in web form here or download it as a PDF here.
 

yellow

Moderator emeritus
Oct 21, 2003
16,018
6
Portland, OR
Huh. Interesting find, Doc.

I assume you found it looking for alternate way to use the Monte Carlo method for approximating the value of Pi?
 

hhlee

macrumors 6502
May 19, 2005
255
1
nice find! i usually look for anything to do with bash and that seems to work well.
 

MinkysBear

macrumors newbie
Apr 7, 2008
2
0
Ohio
Diff'ing between MS-DOS (FAT32) and Mac OS Extended (Journaled) Volumes

When I ran the command
diff -qr dirA dirB | sort > diffs.txt

I received a lot of notifications that the "._filename.extension" were different on the one volume but not the other. What had happened is that that volume is formatted as MS-DOS (FAT32) and the other is as Mac OS Extended (Journaled).

When I grep'ed through the diffs.txt file, I used the two flags as suggested above but this time removing any of those files that had the ._ in them

grep -v -e '._' diffs.txt
or
grep -v -e ': .' diffs.txt // since the format was "full_path: filename"

... that showed me the real differences between the directories.

Thanks!
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.