Scripting programming language
|
Scripting programming languages (commonly called scripting languages or script languages) are computer programming languages designed for "scripting" the operation of a computer. Early script languages were often called batch languages or job control languages.
In computer applications, a script, roughly speaking, is a computer program that automates the sort of task that a user might otherwise do interactively at the keyboard. A shell script often consists largely of the sort of commands that might be typed at a command prompt, or in a word processing program a user might write a script that would combine a sequence of editing tasks that the user expects to perform repeatedly. Many such languages are quite sophisticated, and have been used to write elaborate programs, which are often still called scripts even if they go well beyond automating simple sequences of user tasks.
Contents |
Description
Computer languages are created for varying purposes and tasks — different kinds and styles of programming. One common programming task is known as scripting, or connecting diverse pre-existing components to accomplish a new related task. Those languages which are suited to scripting are typically called scripting languages. Many languages for this purpose have common properties: they favor rapid development over efficiency of execution; they are often implemented with interpreters rather than compilers; and they are strong at communication with program components written in other languages.
Many scripting languages emerged as tools for executing one-off tasks, particularly in system administration. One way of looking at scripts is as "glue" that puts several components together; thus they are widely used for creating graphical user interfaces. Scripts are typically stored only in their plain text form (as ASCII) and interpreted, or (as with Perl) compiled each time they are invoked.
Some scripting languages are designed for a specific domain, but often it is possible to write more general programs in that language. In many large-scale projects, a scripting language and a lower level programming language are used together, each lending its particular strengths to solve specific problems. Scripting languages are often designed for interactive use, having many commands that can execute individually, and often have very high level operations (for example, in the classic UNIX shell (sh), most operations are programs themselves).
Such high level commands simplify the process of writing code. Programming features such as automatic memory management and bounds checking can be taken for granted. In a 'lower level' or nonscripting language, managing memory and variables and creating data structures tends to consume more programmer effort and lines of code to complete a given task. In some situations this is well worth it for the resulting fine-grained control. The scripter typically has less flexibility to optimize a program for speed or to conserve memory.
For the reasons noted above, it is usually faster to program in a scripting language, and script files are typically much smaller than, say, equivalent C program files. The flip side can be a performance penalty: scripting languages, often interpreted, may be significantly slower to execute and may consume more memory when running. In many relevant cases, however, e.g. with small scripts of some tens of lines, the write-time advantage far outweighs the run-time disadvantage. Also, this argument gets stronger with rising programmer salaries and falling hardware costs.
However, the boundary between scripting languages and regular programming languages tends to be vague, and is blurring ever more with the emergence of new languages and integrations in this fast-changing area. In some scripting languages, an experienced programmer can accomplish a good deal of optimization if they choose. And in general, it is possible to write a script in any language (including C or assembly language). In most modern systems, the latter case is very seldom recommendable, since one or more suitable script languages is usually available.
Types of scripting languages
Application-specific languages
Many large application programs include an idiomatic scripting language tailored to the needs of the application user. Likewise, many computer game systems use a custom scripting language to express the programmed actions of non-player characters and the game environment. Languages of this sort are designed for a single application and, while they may superficially resemble a specific general-purpose language (e.g. QuakeC, modeled after C) they have custom features which distinguish them.
- ACS
- AutoIt [1] (http://www.autoitscript.com/autoit3/)
- ActionScript
- BlobbieScript [2] (http://www.wocmud.org/Carnage/blobbieScript/)
- GameMonkeyScript
- IRC script
- Lingo
- QuakeC
- UnrealScript
- ZZT-oop
Text processing languages
The processing of text-based records is one of the oldest uses of scripting languages. Many, such as Unix's awk and, later, Perl, were originally designed to aid system administrators in automating tasks that involved Unix text-based configuration and log files. Perl is a special case -- originally intended as a report-generation language (hence its name, Practical Extraction and Reporting Language) it has grown into a full-fledged applications language in its own right.
Job control languages and shells
Main article: Shell script
Another class of scripting languages has grown out of the automation of job control -- starting and controlling the behavior of system programs. Many of these languages' interpreters double as command-line interfaces, such as the Unix shell or the MS-DOS COMMAND.COM. Others, such as AppleScript, add scripting capability to computing environments lacking a command-line interface.
- AppleScript
- AREXX (Amiga REXX)
- bash
- csh
- JCL
- ksh
- MS-DOS batch
- REXX
- sh
General-purpose dynamic languages
Some languages, such as Perl, have begun as scripting languages but developed into programming languages suitable for broader purposes. Other similar languages -- frequently interpreted, memory-managed, dynamic -- have been described as "scripting languages" for these similarities, even if they are more commonly used for applications programming.
Extension/embeddable languages
A small number of languages have been designed for the purpose of replacing application-specific scripting languages, by being embeddable in application programs. The application programmer (working in C or another systems language) includes "hooks" where the scripting language can control the application. These languages serve the same purpose as application-specific extension languages, but with the advantage of allowing some transfer of skills from application to application.
JavaScript began as and primarily still is a language for controlling web browsers, however, the standardization of the language as ECMAScript has made it popular as a general purpose embeddable language. Various implementations now exist in products made by Adobe Systems (PDF forms), Macromedia (Actionscript in Flash is a JavaScript work-alike), and others. The Mozilla JavaScript implementations are open source, and are increasingly used by a growing number of applications as their scripting engine.
Uncategorized
- BeanShell (scripting for Java)
- Brain
- CobolScript
- Ch (C/C++ interpreter)
- HyperTalk
- E
- Escapade (server side scripting)
- Euphoria
- F-Script programming language
- Groovy
- ICI
- KiXtart
- LoadRunner
- mIRC script
- Miva
- Mondrian
- MUMPS (M)
- NWscript
- ObjectRexx
- Pliant
- REBOL
- ScriptBasic
- Scriptol
- Shorthand Language
- Simkin
- UserTalk
- VBScript
- Visual DialogScript
See also
External links
- A study of the Script-Oriented Programming (SOP) suitability of selected languages (http://merd.sourceforge.net/pixel/language-study/scripting-language/) – from The Scriptometer.
- Hotscripts.com (http://www.hotscripts.com) -A collection of many scripts written and an assortment of languagesde:Skriptsprache
zh:脚本 (计算机科学) pl:Skrypt ru:Скрипт es:Lenguaje interpretado fr:Langage de script it:Scripting ja:スクリプト言語 nl:Scripttaal no:Skriptspråk pl:Język skryptowy fi:komentosarjakieli zh:脚本语言