mirror of
https://github.com/GeorgeMcMullen/rxIRC.git
synced 2026-01-12 00:02:51 +00:00
14 lines
319 B
Plaintext
14 lines
319 B
Plaintext
/* SETENV EXEC
|
|
* Set an environment variable for C programs to access
|
|
* last change by Lynx_VM (244661 at DOLUNI1) on Sunday, 12 May 1991
|
|
*/
|
|
address 'COMMAND'
|
|
parse arg n c; upper n
|
|
if n="" then
|
|
'GLOBALV SELECT CENV LIST'
|
|
else if c="" then
|
|
'GLOBALV SELECT CENV LIST' n
|
|
else
|
|
'GLOBALV SELECT CENV SETL' n c
|
|
exit rc
|