Language OPS Script
Date: | 04/20/05 |
Author: | Anonymous |
URL: | n/a |
Comments: | 3 |
Info: | n/a |
Score: | ![]() |
@@ OPS (Operations Procedure Support) is an Ericsson product that fits in to @@ our Operations Support Systems (OSS) that are sold worldwide to manage @@ various Telecom Networks. @@ @@ OPS is used to create and execute task-oriented scripts toward Network @@ Elements, or Switches. The Operations Procedure Support is an editor, @@ debugger, and execution environment for command files using the OPS @@ Script language. @@ @@ It originated from Telstra, Australia with a language called the PC-Ozterm @@ command file language. To a large extent, the OPS script language and @@ the PC-Ozterm command file language are compatible. @SET noun = "bottles" @SET string0 = "of beer" @SET string1= "{string0} on the wall" @SET string2 = "Take one down, pass it around," @FOR bottles = 1 TO 98 @COMMENT( 100 - {bottles}, " {noun} {string1},") @COMMENT( 100 - {bottles}, " {noun} {string0}.") @COMMENT(string2) @IF bottles = 98 THEN SET noun = "bottle" @COMMENT( 99 - {bottles}, " {noun} {string1}.") @COMMENT @NEXT bottles @COMMENT("1 {noun} {string1},") @COMMENT("1 {noun} {string0}.") @COMMENT(string2) @COMMENT("No more bottles {string1}.")
Download Source | Write Comment
Download Source | Write Comment
Add Comment
Please provide a value for the fields Name,
Comment and Security Code.
This is a gravatar-friendly website.
E-mail addresses will never be shown.
Enter your e-mail address to use your gravatar.
Please don't post large portions of code here! Use the form to submit new examples or updates instead!
Comments
Ozterm goes hand-in-hand with another program called CAM (Customer Access Menu). CAM is a DOS based "graphical" interface that lets the user make selections and enter details, then it assembles Ozterm script fragments into a single script, and then hands over control to Ozterm which executes it. When the script is finished, the results are returned from Ozterm to CAM. It's really clunky but it can do some extremely complex tasks.
Please mail me .
Thanks
Cheers,
Mathias (original author of the OPS-script above...)