Mac Os X Unix Software

MaddyC

Registered
Does anyone have a list of all the software packages included with the darwin subsystem in Mac Os X????
 
what do you mean by packages? is vi a package? most UNIX utilities and programs are just single files. want to know what UNIX utilities you have available? try this:
Code:
% ls `echo $PATH | sed 's/:/ /g'` | more
 
Back
Top