A2osX/TESTS/ENVTEST
Patrick Kloepfer 7829347f9c
2019-01-24 23:29:46 -05:00

44 lines
956 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

NEW
PREFIX /A2OSX.BUILD
AUTO 4,1
#!/BIN/SHELL
#SET -X
ECHO "\n\nThis is the ENV Test"
ECHO "\n This will stress the ENV space and string handling"
ECHO "\n\nEnter the size of the base string to use.
ECHO "Acceptable values are 20, 40 and 60\n"
read -P "String size: " Z
IF [ $Z = "20" ]
SET A = "A1B2C3D4E5F6G7H8I9J0"
ELSE
IF [ $Z = "40" ]
SET A = "A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0"
ELSE
IF [ $Z = "60" ]
SET A = "A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0"
ELSE
ECHO "\n\nYou did not enter a valid size"
EXIT
FI
FI
FI
ECHO "Base String Set to ${A}"
ECHO Copy A to B
SET B = ${A}
Echo "B is ${B}"
Echo Copy B to C
SET C = ${B}
Echo "C is ${C}"
ECHO Copy A to D
SET D = ${A}
Echo "D is ${D}"
ECHO Copy B to E
SET E = ${B}
Echo "E is ${E}"
ECHO Copy C to F
SET F = ${C}
Echo "F is ${F}"
ECHO END ENV TEST
MAN
TEXT USR/SHARE/TESTS/ENVTEST