TweetFollow Us on Twitter

Scripting Languages

Volume Number: 15 (1999)
Issue Number: 9
Column Tag: Systems

Scripting Languages

by Rich Morin and Vicki Brown

A Cross-OS Perspective

Background

Ask most computer users (or programmers) about scripting languages and you'll get a wide variety of answers. Most users, however, will give you examples of languages they "know" are scripting languages - AppleScript, the Unix shells, Visual Basic, JavaScript, Perl, Tcl/Tk...

Ask about system programming languages and you'll be given a different set of examples. This time C, C++, Java, and/or Pascal will be mentioned. Everyone knows which languages fit which categories, but not everyone can explain why. And what about languages such as Perl, which seem to have elements of both?

Although "scripting languages" are increasingly popular, their exact definition can be elusive. Are they simply variations on "command languages"? Can they be used for "real" programming? Because of the way languages evolve, no definition we could make can be definitive, but some background notes may help to clarify the situation.

Scripting languages have their roots in the "Job Control" languages (e.g., IBM's OS JCL) that are used on "batch processing" computer systems. JCL commands tell the system to run specified programs, using particular I/O resources (e.g., files and tape drives). The "command languages" found on "time-sharing" systems (e.g., Unix and VMS) add interactive window-dressing, but perform precisely the same functions.

Unix "shells" (e.g., bash, csh, ksh, and sh), along with Apple's MPW, are strongly influenced by these command languages. As a result, users of these shells still "program" their way through the day. By issuing commands to the system, they can move files, compile programs, and more. For example, a Unix user might issue these commands:

% mv foo.c bar.c						# rename "foo.c" to "bar.c"
% cc -o bar bar.c						# compile "bar.c" into "bar"
% bar											# run "bar"

Scripts

The line between entering commands and scripting is very fine. On most modern computer systems, it is trivial to record a "script" of user commands, edit it as desired, and reuse it later to perform similar operations. A typical Unix "shell script" of this sort might look like:

# wl - run word count, then print (lpr) a set of files
#
# Usage: wl file1 [file2] ...
T=/tmp/wl.$$	# temporary file
wc  -l $* > $T	# get line counts for files 
lpr $T $*	# print line counts, then files
rm  $T	# remove temporary file

Shell scripts tend to be easy to write, understand, and modify, at least in comparison to C programs that perform the same tasks. Many of the "standard" Unix tools are implemented as shell scripts. (A quick look over our FreeBSD system found 47 scripts, a little less than 10% of the total system commands). MPW users won't find this unusual; indeed, scripts are even more prevalent on MPW. (Approximately a quarter of the commands in the basic MPW distribution are scripts.)

"Glue" Languages

Unlike most compiled languages, which make use of code libraries written in the same language, scripting languages are often used as "glue" languages. That is, they are used to glue together tools and programs which may not, themselves, be written in the scripting language.

In the example above, the wl script glues together three Unix tools: wc, lpr, and rm. Each of these may, itself, be another script; it doesn't matter. What does matter is that we've brought them together (along with a variable definition and some comments), creating a useful tool.

When Does a Script Become a Program?

OS JCL has relatively primitive support for programming. Variables can be defined and conditional execution is supported, along with a bit of modularity, but that's about it. Today's command languages, in contrast, support all sorts of programming constructs.

The Unix and MPW shells each allow conditional execution and generalized control flow (e.g., if...else, looping), some level of modularity, variable creation and evaluation, and other desirable features. As a result, rather than sticking to simple, line-by-line scripts, it is quite possible to write "real programs" in these languages. As we said before, many of the normal administrative tools found in Unix and MPW are, in fact, are scripts.

Because scripting languages are "interpreted" (rather than compiled into machine code), they can show some amazing bits of run-time flexibility. For instance, the variables ($* and $T) in the Unix shell script above could contain any sort of text strings, including data values, file names, or even shell commands!

Similarly, the "backquote" operator can be used to generate data "on the fly", as:

% mv 'grep -l Mac *' dir  # move "Mac" files into "dir"

In the Unix command above, grep searches all files in the current working directory, listing (the names of) files which contain the string "Mac". This list is then substituted back into the command line, yielding something like:

% mv abc bcd cde ... dir

If the user had to write the script this way, it would lose much of its value, as the names of the files would have to be "hard-coded" into the script. Instead, the filenames are calculated at runtime, and they will likely be different every time this script is run.

Although neither mv nor grep "knows" how to do this sort of selective file move, users are able to combine them in ways that take advantage of each command's strong points. This re-use of low-level tools is very characteristic of scripting and can be extremely powerful.

The following bit of code from an MPW Startup file combines use of backquotes with if...else statements and variable evaluation (in {braces}) to create a tidy little programmatic construct, as well as a reusable bit of code that can be shared between users.

if "'Exists "{PrefsFolder}"UserProjectMenu'"
	Execute "{PrefsFolder}"UserProjectMenu
else if "'Exists "{MPW}"UserProjectMenu'"
	Execute "{MPW}"UserProjectMenu
else
	ProjectMenu	# the default project menu
end

There is no need for the script to know how a given user has his menus set up, nor even to know (ahead of time) what the path to the PrefsFolder or the MPW folder will be. As long as the pertinent variables are set by the user, this script will run correctly. More to the point, it will be flexible enough to serve the needs of different users.

AppleScript

Although users of conventional (i.e., command line) scripting languages may find AppleScript to be somewhat unusual, it does fit the model of what a scripting language can be. Under Mac OS, commands are issued, not by typing, but by selecting - menus, buttons, icons - and clicking. AppleScript allows users to save these commands in a file, suitable for executing (by double-clicking) at a later time. These files can then be annotated and extended in a manner similar to editing a shell script under Unix or MPW. Thus, it is reasonable to think of AppleScript, along with MPW and the Unix shells, as a scripting language.

The Record feature (analogous to the Unix script command) allows a user to record an exact sequence of events into a script. After recording, the user can then edit the script with a specialized Script Editor, adding variables, conditionals, and looping. Indeed, while a simple recorded AppleScript may bear little resemblance to what we think of as a program (being nothing more than a repetitive list of captured tasks), with the addition of a few variables and a loop or too, AppleScripts begin to look quite... real.

Some tasks may not be recordable, unfortunately, so you'll need to read the documentation carefully (and study examples) to get the most mileage out of your scripts. Even then, menu selection, button presses, and the like still won't be scriptable with vanilla AppleScript. If you're writing an automated script, you may not want the script to stop part way through and wait for the user to click the OK button!

Fear not - PreFab Player <http://www.prefab.com> is a commercial application created to work with AppleScript and provide access to all the controls that Apple and other application vendors left out. Specifically, Player "adds verbs that query and manipulate the Macintosh user interface, giving your scripts access to otherwise non-scriptable applications, desk accessories and control panels." This lets you include statements such as

do menu menu item "Page Setup" of menu "File"

within your scripts, removing the need for user intervention (and making your AppleScripts even more "program-like").

Advanced Scripting Languages

As useful as they are, conventional scripting languages have syntactic and other limitations, however, which tend to limit their efficiency and expressive power. For instance, even "advanced" Unix shells (e.g., bash and ksh) have very limited support for concurrency, data structuring, information hiding, object-oriented programming, regular expressions, etc.

Responding to these deficiencies, language developers have created extended scripting languages such as Perl, Python, and Tcl/Tk, among others. These languages are still able to invoke and glue together other programs, manipulate files, and set values on-the-fly, but they are also appropriate for writing much larger applications.

Perl, for example, provides compact but very powerful sets of data types (numbers, strings, and references) and structures (hashes and lists). Hashes, also known as an associative arrays, use text strings as indices. Lists, in Perl, are numerically indexable and can also act as stacks, queues, or even dequeues (double-ended queues). Perl emphasizes support for common application-oriented tasks; important feature of Perl include built-in regular expressions, "text munging", file I/O, and report generation.

Python has a great deal in common with Perl, but it emphasizes different things. Python's focus is on support for common programming methodologies such as data structure design and object-oriented programming. While such things are generally matters of opinion, Python also claims to have a more "elegant" (i.e., "less cryptic") syntactic notation.

Tcl/Tk shines at creating graphical user interfaces. A few dozen lines of Tcl/Tk can produce a very substantial collection of buttons, sliders, fill-in areas, and other widgets, nicely arranged and capable of doing calculations and/or invoking other applications. Tcl alone makes an excellent language for writing low-level system and kernel test tools; Tcl does not require a user interface, nor do Tcl scripts require the complete Operating System, with all its utilities, to be running.

In addition, through the efforts of these language enthusiasts, these languages have very substantial collections of add-on code (e.g., modules and libraries) for accessing databases, creating or parsing HTML, writing network daemons, etc. By leveraging the available add-ons, programmers can accomplish a great deal in an astonishingly small amount of new code.

System Programming Languages

Where do we draw the line between a scripting language and a system programming language? Perl, for example, is widely considered to be a scripting language, but it shares many characteristics with so-called "system" languages such as C. As an example, Perl can take advantage of sockets, fork processes (under Unix), and handle various aspects of input/output and process control "normally" reserved for "system" languages.

Perl can still be used as a glue language, but the Perl language itself has become so capable that this is no longer a requirement. In simple scripting languages, such as the Unix shell, there are only a small number of built-in commands; it's difficult to write much code without invoking another, "external" program or two. In contrast, the Perl language is so extensive (and extensible, via modules and XS code), that it is quite possible to write a complete Perl script that relies on nothing but Perl. (This is part of what makes Perl so portable).

MacPerl, for example, is a nearly complete port of Perl to the Macintosh, leaving out only those features that are specifically unsupported by the Mac OS (e.g., fork, exec, and various process and user control commands). MacPerl even sports a more extensive socket library than Unix Perl (specifically, it supports AppleTalk).

When combined with ToolServer (part of the MPW suite), MacPerl can even act as a glue language, taking advantage of backquoted commands or the system() function to call Apple application programs. MacPerl scripts can also call AppleScript (and vice versa), providing even more programming power and extensibility.

At some point, with so many readily available, easy to use (and inexpensive or free!) high-level scripting languages to choose from, why would anyone still resort to C, C++, or Java? We can think of several reasons, but execution speed and the desire to keep algorithms private are probably the dominant ones. Both of these reasons are going away, however, with increases in processor speed and the advent of compilers for traditionally interpreted scripting languages.

If you want to get down to the lowest level and work closely with the actual bits, or if you need special memory allocation or character I/O, a system programming language may still be the best choice. And, of course, you may not want to write the next great OS in a scripting language (then again, you might!). In any event, scripting languages definitely have a useful role to fill in most programmer's toolchests; if you haven't yet done so, we suggest that you give them a try!

References

MPW - Macintosh Programmers Workbench, is available for free download from Apple Computer. See http://developer.apple.com/tools/mpw-tools/index.html.

An extensive set of pointers to scripting language comparisons can be found on the Python language web site at http://www.python.org/doc/Comparisons.html.

Idiom Consulting has compiled a Catalog of Free Compilers and Interpreters, "... freely available software for ... things whose user interface is a language." The list is available at http://www.idiom.com/free-compilers.

For a comparison of Perl, Python, and Tcl/Tk (as well as another perspective on what makes a scripting language), see "Choosing a Scripting Language" in the Oct, 1997 issue of SunWorld (available at http://www.sunworld.com/swol-10-1997/swol-10-scripting.html).

Further information on Perl, Python, and Tcl/Tk can be found, respectively, at http://www.perl.com, http://www.python.org, and http://www.scriptics.com. Ports of all three languages are available for Mac OS.


A 30-year veteran of the computer industry, Rich Morin ([email protected]) writes the Silicon Carny column for SunExpert magazine and is a Contributing Editor for MacTech. He programs almost entirely in Perl these days, on Mac and Unixish systems. Rich is also the president of Prime Time Freeware (www.ptf.com), which publishes mixed-media (book/CD-ROM) collections of freely redistributable software. PTF's Mac-specific products include "MacPerl: Power and Ease" and "MkLinux: Microkernel Linux for the Power Macintosh".

Vicki Brown ([email protected]) has been programming professionally since 1984. Unix is her favorite Operating System; the Mac OS is her favorite User Interface. Vicki is co-author of "MacPerl: Power and Ease" and co-host of the MacPerl feature in PerlMonth magazine. When she isn't writing, Vicki is employed as a Scientific (Perl) Programmer at a BioTech company on the San Francisco Peninsula. Her interests include programming, the World Wide Web, reading, writing, and spending time with her spouse and their cats.

 
AAPL
$109.01
Apple Inc.
+0.31
MSFT
$48.68
Microsoft Corpora
-0.02
GOOG
$541.01
Google Inc.
-1.03

MacTech Search:
Community Search:

Software Updates via MacUpdate

DiskCatalogMaker 6.4.11b2 - Catalog your...
DiskCatalogMaker is a simple disk management tool which catalogs disks. Simple, light-weight, and fast. Finder-like intuitive look and feel. Super-fast search algorithm. Can compress catalog data... Read more
Quicken 2015 2.1.1 - Complete personal f...
Quicken 2015 helps you manage all your personal finances in one place, so you can see where you're spending and where you can save. Quicken automatically categorizes your financial transactions,... Read more
MarsEdit 3.6.6 - Quick and convenient bl...
MarsEdit is a blog editor for OS X that makes editing your blog like writing email, with spell-checking, drafts, multiple windows, and even AppleScript support. It works with with most blog services... Read more
Unison 2.2 - Usenet newsreader handles m...
Need a Usenet provider? Get unlimited transfers and SSL encryption for just $10/mo. from Ngroups. Unison is a carefully-crafted, genuinely revolutionary Mac OS X Usenet newsreader. It offers all the... Read more
Interarchy 10.0.6 - Advanced file transf...
Interarchy is an advanced file transfer app that supports FTP, SFTP, Webdav, S3 and the new, very fast iFTP. It also supports plug-in architecture for compressing files, running scripts and... Read more
Capture One Pro 8.0.1.19 - RAW workflow...
Capture One Pro 8 is a professional RAW converter offering you ultimate image quality with accurate colors and incredible detail from more than 300 high-end cameras -- straight out of the box. It... Read more
Microsoft Remote Desktop 8.0.10 - Connec...
With Microsoft Remote Desktop, you can connect to a remote PC and your work resources from almost anywhere. Experience the power of Windows with RemoteFX in a Remote Desktop client designed to help... Read more
Degrees 4.0 - Get basic weather info in...
Degrees is a simple app that shows current weather conditions in the menu bar, where you can always easily see them. Features: Automatically detects where you are using Apple Core Location Option to... Read more
Pixelmator 3.3 - Powerful layer-based im...
Pixelmator is a beautifully designed, easy-to-use, fast, and powerful image editor for OS X. It has everything you need to create, edit, and enhance your images. Pixelmator is a layer-based image... Read more
BitTorrent 7.4.2 build 35248 - Official...
BitTorrent is a protocol for distributing files. It identifies content by URL and is designed to integrate seamlessly with the web. Its advantage over plain HTTP is that when multiple downloads of... Read more

Latest Forum Discussions

See All

Icewind Dale: Enhanced Edition (Games)
Icewind Dale: Enhanced Edition 1.3.2058 Device: iOS Universal Category: Games Price: $9.99, Version: 1.3.2058 (iTunes) Description: Evil stirs beneath the Spine of the World. | Read more »
Rotational Runner, Boson X, is Currently...
Rotational Runner, Boson X, is Currently Free Posted by Jessica Fisher on November 7th, 2014 [ permalink ] Universal App - Designed for iPhone and iPad | Read more »
Doodle Jump Goes Comic With DC Super Her...
Doodle Jump Goes Comic With DC Super Heroes Posted by Jessica Fisher on November 7th, 2014 [ permalink ] Universal App - Designed for iPhone and iPad | Read more »
It Came From Canada: Creature Academy
Creature Academy doesn’t have time for your slow-paced, grandparents’ RPGs. In the span of a few minutes, it has players slicing down monsters, toppling a boss, improving their party, and repeating the whole cycle all over again. But while role-... | Read more »
Blight’s Decay Review
Blight’s Decay Review By Andrew Fisher on November 7th, 2014 Our Rating: :: SIMPLE BUT SOLIDUniversal App - Designed for iPhone and iPad Blight’s Decay is a filler game, neither deep nor complex. However, it is still quite fun and... | Read more »
Knights of Pen & Paper Haunted Fall...
Knights of Pen & Paper Haunted Fall Expansion Out Today Posted by Jessica Fisher on November 7th, 2014 [ permalink ] Universal App - Designed for iPhone and iPad | Read more »
Dungeon Hunter 4 Receives An Update with...
Dungeon Hunter 4 Receives An Update with Three New Dungeons Posted by Jessica Fisher on November 7th, 2014 [ permalink ] Universal App - Designed for iPhone and iPad | Read more »
Fill in a quick form for your chance to...
Live in the US? Like free games and USB gadgets? Well, you’re in luck! Our friends at Chukong Technologies are offering 148Apps readers the chance to grab two fine games loaded onto a neat little 16GB micro USB drive that’s so tiny you won’t even... | Read more »
Don’t Worry About Gluing Your Fingers To...
Don’t Worry About Gluing Your Fingers Together. Make Models With Monzo Posted by Jessica Fisher on November 7th, 2014 [ permalink ] Universal App - Designed for iPhone and iPad | Read more »
TODAY (Calendar, Reminder, Goal, Habit,...
TODAY (Calendar, Reminder, Goal, Habit, Anniversary) 1.0 Device: iOS iPhone Category: Productivity Price: $2.99, Version: 1.0 (iTunes) Description: Plan your life with TODAYTODAY is an application which is new types of combined... | Read more »

Price Scanner via MacPrices.net

Sale! 13-inch 2.6GHz/256GB MacBook Pro for $1...
 Best Buy has the 13″ 2.6GHz/256GB Retina MacBook Pro on sale this weekend for $1374.99, or about $125 off MSRP. Choose free home shipping or free local store pickup (if available). Price valid for... Read more
Sale! 15-inch 2.2GHz Retina MacBook Pro for $...
 Best Buy has the 15″ 2.2GHz Retina MacBook Pro on sale this weekend for $1799, or $200 off MSRP. Choose free home shipping or free local store pickup (if available). Price valid for online orders... Read more
OWC Announces 1.0TB (960GB) Aura SSD Upgrade...
Other World Computing (OWC), has announced new OWC Aura SSD models with double the previous capacity. With 960GB of net storage for Apple MacBook Air 2010, 2011, and 2012 models, OWC now offers... Read more
Apple iPad mini 2 – Arguably The best Value I...
Apple’s $299.00 iPad mini 2 is the “best value iOS product on the market today, letting you into the Apple app world without breaking the bank.” notes PC Mag’s Sascha Segan, who suggests that the... Read more
iPad Web Usage Share Rises Since July, Down S...
According to the latest metrics from Chitika Insights, iPad users generated 79.9% of North American tablet-based Web traffic during September 2014 — a share down from the 81% figure observed in... Read more
Save up to $340 with an Apple Certified Refur...
The Apple Store has Apple Certified Refurbished iMacs available for up to $340 off the cost of new models (including the recently-discounted 27″ models). Apple’s one-year warranty is standard, and... Read more
Friday only: 16GB iPad mini available for $19...
Walmart is offering 1st generation iPad minis for $199 for today (Friday the 7th) only as part of their 1 Day Deals. Their price is $50 off MSRP. Choose free shipping or free local store pickup.... Read more
Best Buy’s College Student Deals: Take additi...
Take an additional $50 off all MacBooks at Best Buy Online with their College Students Deals Savings, valid between 11/2 & 11/9, then again from 12/7 through 1/3/15. Anyone with a valid .EDU... Read more
Take up to $300 off MSRP with Apple’s Educati...
Purchase a new Mac or iPad at The Apple Store for Education and take up to $300 off MSRP. All teachers, students, and staff of any educational institution qualify for the discount. Shipping is free,... Read more
New Interactive iPad App Helps Advisors Build...
Envestnet | Tamarac, a division of Envestnet, Inc. and a provider of integrated and web-based portfolio and client management software for independent advisors, has announced the launch of its... Read more

Jobs Board

Project Manager / Business Analyst, WW *Appl...
…a senior project manager / business analyst to work within our Worldwide Apple Fulfillment Operations and the Business Process Re-engineering team. This role will work Read more
*Apple* Solutions Consultant (ASC) - Apple (...
**Job Summary** The ASC is an Apple employee who serves as an Apple brand ambassador and influencer in a Reseller's store. The ASC's role is to grow Apple Read more
Position Opening at *Apple* - Apple (United...
…customers purchase our products, you're the one who helps them get more out of their new Apple technology. Your day in the Apple Store is filled with a range of Read more
Position Opening at *Apple* - Apple (United...
**Job Summary** The Apple Store is a retail environment like no other - uniquely focused on delivering amazing customer experiences. As an Expert, you introduce people Read more
Project Manager / Business Analyst, WW *Appl...
…a senior project manager / business analyst to work within our Worldwide Apple Fulfillment Operations and the Business Process Re-engineering team. This role will work Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.