Jump to content

TACL (programming language)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 216.93.214.2 (talk) at 03:31, 27 November 2005 (Additional information relating to TACL). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

TACL (the Tandem Advanced Command Language) is the scripting programming language used in Tandem Computers. Tandem Computers were originally designed and sold by Tandem Computers, Inc., based in Cupertino, CA. Tandem's strategy was the emerging concept of "continuous availability" that relied on redundant hardware and a well engineered operating system (NonStop Kernel or NSK) to ensure continuous application availability by ensuring the system could survive any single point of hardware failure. Tandem was purchased by Compaq Computer Corporation in 1997. Compaq eventually merged with Hewlett Packard.

TACL continues to be the scripting language used on Hewlett Packard NonStop Servers. NonStop servers are utilized by many of the largest banks and stock exchanges all over the world.

TACL is interpreted. TACL instructions can be stored in a simple text file as MACROS, ROUTINES, or DEFINES to make scripts. Such scripts are often used to store complex configuration instructions such as start-up and hardware configuration sequences.

The TACL language has a large number of Built-in utilities which allow the user to capture output from various system utilities and parse the captured text, line by line or character by character. This allows users to build TACL programs that can monitor system events through the use of filters that monitor the system and application event logs.

Example of a TACL routine saved in the file FILE1:

?TACL HELLO_WORLD ROUTINE

  1. OUTPUT Hello World

How to run the TACL routine:

1. From a TACL prompt type: LOAD / KEEP 1 / FILE1 (this loads the routine into memory) 2. Type: HELLO_WORLD to run the routine 3. Output will be: Hello World