2005/05/17 automator (Mac OS X Tiger)

Automator is Mac OS X Tiger's drag and drop programming thingy. I've never been a fan of such things - they are almost always billed as "No programming necessary" which of course is nonsense. Any time you are telling a computer what to do, you are programming. Tell it something stupid, and you get lousy results. So you have to have some intelligence to get what you want - drag and drop doesn't change that a bit.

Right now, Automator has no if-then or loop capability, so it could be more properly classified as a low level batch language. However, it does have the ability to call Applescript or shell scripts, and since the results can be fed right back into the Automator stream, that does give you some control of what exactly happens.

As an example of that, here's a fairly useless Automator program:


Hate these ads?

view of Automator program

The first part of this just presents a dialog box that lets us select a server. It's meaningless in this context; normally you'd follow that with some more useful action like "Get Specified URL's" (which would open Safari) or "Get Link URLs from Webpages". We want to pass the selected URL to a shell script. Unfortunately. Automator is quite fussy about these things: "Ask for Servers" outputs a "URL" type and shell scripts read "Text". You'd expect an automatic conversion, but Automator just hangs if you try to do that. I bet that will be fixed later, but for now, I put a "Copy to Clipboard" in between these two, which effectively converts URL's to Text. The script doesn't do much:



#!/usr/bin/perl
while ($g=shift @ARGV) {
  print "-- $g";



}
exit 0;


The output of that comes back to "View Results". As I said, rather pointless, but of course our program could output different text based on its own decisions. It also has the ability to stop Automator in its tracks: if that "exit 0" were instead an "exit 1", Automator would not continue to the "View Results" step, thus giving us a little more control.

I think Automator could be a nice GUI front end for some simple shell scripts. Obviously you can't get too complex.. but it might be good for some interactions.






See Proxi also.







Enter your email address for automatic notification of new posts here
(be sure to whitelist 'feedburner.com' if you use spam filtering)

Or use any RSS reader

Delivered by FeedBurner





Views for this page
Today This Week This Month This Year  Overall
252356 3,537

Have you tried Searching this site?

Unix/Linux/Mac OS X support by phone, email or on-site: Support Rates

This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more. We appreciate comments and article submissions.

Publishing your articles here

pavatar.jpg
More:
       - MacOSX
       - Programming




Unix/Linux Consultants


SCO, OpenServer, UnixWare, software, servers, security, networks, installation, administration, troubleshooting, maintenance, Watchguard, firewalls, VPNs, e-mail. Visit us at http://opensystemscomputing.com and www.go2unix.com.


http://bcstechnology.net Full service Linux & UNIX systems integrator; Windows to UNIX/Linux Client-Server Specialist; Secure E-Mail & Website Hosting; Thoroughbred Software Developer; Custom Industrial Automation; Hardware & Electronics Experts; In Business Since 1985.


http://thatitguy.com Business networking servers, Linux and Unix experts. In business since 1997! Windows and Exchange to Samba and Scalix migration experts.



Twitter
  • Nov 30 20:25
    I have 37,000 words of a 50,000 word project. I'd like to finish it this week..
  • Nov 30 20:05
    My wife made turkey sandwiches with stuffing and cranberry orange relish - I did not want to eat the last bite. Didn't want it to end!









Change Congress


Related Posts