OS X Command Line Utilities
mitchchn.me
OS X Command Line Utilities
1–10 of 243 posts
Re: OS X Command Line Utilities
#2Re: OS X Command Line Utilities
#3Try this out: say hello -v Good
Re: OS X Command Line Utilities
#4It seems like a large portion of HN is less experienced re sysadmin, but is interested in it nonetheless. Perhaps there's room to make a 'codecademy for unix' type course? Curious to see what folks thing.
Re: OS X Command Line Utilities
#5My favorite command is 'say'. You can do all kinds of silly voices. Try this out: say hello -v Good
say -v '?' (This gives you a list of voices)
say -v Good (This let's you type in a stream of text)
Re: OS X Command Line Utilities
#6Re: OS X Command Line Utilities
#7My favorite command is 'say'. You can do all kinds of silly voices. Try this out: say hello -v Good
say -v cellos "Dum dum dum dum dum dum dum he he he ho ho ho fa lah lah lah lah lah lah fa lah full hoo hoo hoo"
Re: OS X Command Line Utilities
#8This is only tangentially related, but I recently wrote a little Automator Service to gather any selected file and folder paths from Finder. I very often need to grab the path of something for programming-related stuff, and doing it from the command line or with the mini-icon drag-and-drop takes way too long. Maybe somebody here will find it useful! http://cl.ly/1a3s3g1u2Q2w
Re: OS X Command Line Utilities
#9Re: OS X Command Line Utilities
#10 ~$ mdfind tag:Active kind:xcode
/Users/jn/Code/xyz/xyz.xcodeproj
...
Queries like this also work in the Cmd-Space UI, or as a Saved Search. By default each term is joined with AND, but you can specify OR too.