Sponsored Content
Full Discussion: Environment variables
Top Forums UNIX for Dummies Questions & Answers Environment variables Post 302464502 by methyl on Wednesday 20th of October 2010 10:22:49 AM
Old 10-20-2010
@DGPickett
I don't recall any issues with typing or printing or punching lower case Algol 68 programs on a teletype.
This was not a constraint in the standardisation of high-level languages such as Cobol. It was just not on the agenda of the 1968 committee.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

what is the use of Environment variables

what is the actual use of environment variables. I know only PS1, LOGNAME, PS2 variables what are the other variables & what is there use (2 Replies)
Discussion started by: indianguru
2 Replies

2. Programming

environment variables

Hi! How-to get the environment variables in GNU. getenv() only fetches the ones that you can find under export (not the ones under declare)... best regars .David (2 Replies)
Discussion started by: Esaia
2 Replies

3. UNIX for Dummies Questions & Answers

environment variables

Hi Folks, Is it possible somehow to unset all the environment variables which have been defined before in UNIX (Solaris). Thanks, Slava (3 Replies)
Discussion started by: spavlov
3 Replies

4. UNIX for Dummies Questions & Answers

help..Environment variables...

hi, 1). i would like to know what is meant by environment variables? 2). is the number of envi variables is a constant number for unix systems? 3). how to see the list of envi variables (and the values of the envi variables)in a single command? 4). if this questions were already asked... (3 Replies)
Discussion started by: sekar sundaram
3 Replies

5. Programming

environment variables

hi, I want to create a new EV(Environment Variable) through a c program and I done this thing through setenv() method. But the newly created EV is not permanent, i.e. when I exit from the program the EV also no longer lives. But I want to make it a permanent EV for the current user. Actually I... (6 Replies)
Discussion started by: sumsin
6 Replies

6. Shell Programming and Scripting

environment variables

Hi, If i have a variable set and exported in my pofile file will that variable be available in all shell scripts created. Thanks, Radhika. (3 Replies)
Discussion started by: radhika03
3 Replies

7. Shell Programming and Scripting

Environment variables

I have read tons of posts about how you can't set persisting environment variable in a child script of a shell and have it persist. The only way is to source a file as % . <scriptname> I am finding that true... but I know there is a way around it. I just don't know how. I worked for 6... (5 Replies)
Discussion started by: rwa25
5 Replies

8. HP-UX

Environment Variables

Hi Experts, Need your help in understanding the commands to setup the environment variables in hp-ux. Beleive need to use either set,setenv or export. I am confused between above three options, when to use which option? On command line, I have tried both set and setenv but couldn't... (1 Reply)
Discussion started by: sai_2507
1 Replies

9. Homework & Coursework Questions

Environment Variables

1. The problem statement: What is the mesg value set for your environment? If it is on, how would you turn off your current session? How would you set it permanently? 3. The attempts at a solution : Read Unix The textbook. 3rd chapter has many things like environment variables and... (5 Replies)
Discussion started by: mahinkhan22
5 Replies

10. HP-UX

Environment Variables

Hi All, I need to understand following three environment variables and their usages in HP Unix. _M_ARENA_OPTS _M_CACHE_OPTS PTHREAD_SCOPE_SYSTEM How does these environment variables influence multi threaded applciation and how do we decide the value of these variables? Is there... (0 Replies)
Discussion started by: angshuman
0 Replies
A68G(1) 							Programmer's Manual							   A68G(1)

NAME
a68g - Algol 68 Genie, an Algol 68 compiler-interpreter SYNOPSIS
a68g [--apropos | --help | --info [string]] [--assertions | --no-assertions] [--backtrace | --no-backtrace] [--brackets] [--check | --no-run] [--compile | --no-compile] [--clock] [--debug | --monitor] [--echo string] [--execute unit | -x unit] [--exit | --] [--extensive] [-f | --file string] [--frame number] [--handles number] [--heap number] [--listing] [--moids] [-O | -O0 | -O1 | -O2 | -O3] [--object | --no-object] [--overhead number] [--optimise | --no-optimise] [--pedantic] [--portcheck | --no-portcheck] [--pragmats | --no-pragmats] [--precision number] [--prelude-listing] [--pretty-print] [--print unit | -p unit] [--quiet] [--quote-stropping] [--reductions] [--rerun] [--run] [--script string] [--source | --no-source] [--stack number] [--statistics] [--strict] [--terminal] [--time-limit number] [--trace | --no-trace] [--tree | --no-tree] [--unused] [--upper-stropping] [--verbose] [--version] [--warnings | --no-warnings] [--xref | --no-xref] filename DESCRIPTION
Algol 68 Genie (Algol68G) is an Algol 68 compiler-interpreter. It can be used for executing Algol 68 programs or scripts. Algol 68 is a rather lean orthogonal general-purpose language that is a beautiful means for denoting algorithms. Algol 68 was designed as a general-purpose programming language by IFIP Working Group 2.1 (Algorithmic Languages and Calculi) that has continuing responsibility for Algol 60 and Algol 68. Algol 68 Genie and its documentation can be obtained from http://jmvdveer.home.xs4all.nl/ OPTIONS
Options are passed to a68g either from the file .a68g.rc in the working directory, the environment variable A68G_OPTIONS, the command-line or from pragmats. Option precedence is as follows: pragmat options supersede command-line options, command-line options supersede options in environment vari- able A68G_OPTIONS, A68G_OPTIONS supersedes options in .a68g.rc. Listing options, tracing options and -pragmat, -nopragmat, take their effect when they are encountered in a left-to-right pass of the program text, and can thus be used, for example, to generate a cross reference for a particular part of the program. Where numeric arguments are required, suffices k, M or G are allowed for multiplication with 2 ** 10, 2 ** 20 or 2 ** 30 respectively. --apropos | --help | --info [string] Print info on options if string is omitted, or print info on string otherwise. --assertions | --no-assertions Control elaboration of assertions. --backtrace | --no-backtrace Control whether a stack backtrace is done in case a runtime-error occurs. --brackets Consider [ .. ] and { .. } as being equivalent to ( .. ). Traditional Algol 68 syntax allows ( .. ) to replace [ .. ] in bounds and slices. --check | --no-run Check syntax only, the interpreter does not start. --clock Report execution time excluding time needed for compilation. --compile | --no-compile Switch compilation of units on or off. Compilation omits many of the runtime checks offered by the interpreter proper. The program is not executed and a shell script is generated combining source code and its shared library. This shell script can be used as a pseudo- executable. --debug | --monitor Start in the monitor. Invoke the monitor in case a runtime-error occurs; the program will pause in the monitor on the line that con- tains the error. --echo string Echo string to standout. --execute unit | --x unit Execute the Algol 68 unit. In this way one-liners can be executed from the command line. --exit | -- Ignore further options. --extensive Generate an extensive listing. -f | --file string Accept string as filename in case it conflicts with shell syntax. --frame number Set the frame stack size to number bytes. --handles number Set the handle space size to number bytes. --heap number Set the heap size to number bytes. --listing Generate a concise listing. --moids Generate an overview of modes in the listing file. --object | --no-object Control the listing of C code in the listing file. --optimise | --no-optimise Switch compilation of units on or off. Compilation omits many of the runtime checks offered by the interpreter proper. This option is equivalent to -O2. -O | -O0 | -O1 | -O2 | -O3 Switch compilation of units on and pass the option to the back-end C compiler to set the optimiser level. --overhead number Set overhead for stack checking. --pedantic Equivalent to --warnings --portcheck --portcheck | --no-portcheck Enable or disable portability warning messages. --pragmats | --no-pragmats Control elaboration of pragmats. --precision number Set the precision for LONG LONG modes to number significant digits. --prelude-listing Generate a listing of preludes. --pretty-print Pretty-print the source file. --print unit | --p unit Print the value yielded by the Algol 68 unit. In this way one-liners can be executed from the command line. --quiet Suppress all warning messages. --quote-stropping Use quote stropping. --reductions Print reductions made by the parser. --rerun Use compiled code of a previous run. --run Override the --no-run option. --script string Takes string as source file name and skips further option processing so these can be handled by the script. --source | --no-source Control the listing of source lines in the listing file. --stack number Set the stack size to number bytes. --statistics Generate statistics in the listing file. --strict Ignores extensions to Algol 68 syntax. --time-limit number Interrupt the interpreter after number seconds, generating a time limit exceeded error. --trace | --no-trace Control tracing of the running program. --tree | --no-tree Control listing of the syntax tree in the listing file. --unused Generate an overview of unused tags in the listing file. --upper-stropping Use upper stropping, which is the default stropping regime. --verbose Use verbose mode. --version Print the version of the running image of a68g. --warnings | --no-warnings Enable warning messages or suppress suppressible warning messages. --xref | --no-xref Control generation of a cross-reference in the listing file. AUTHOR
Author of Algol 68 Genie is Marcel van der Veer <algol68g@xs4all.nl>. LINUX
June 24, 2012 LINUX
All times are GMT -4. The time now is 09:30 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy