mirror of
https://github.com/A2osX/A2osX.git
synced 2024-11-22 16:31:07 +00:00
8 lines
160 B
Plaintext
8 lines
160 B
Plaintext
#!/BIN/SHELL
|
|
SET -X
|
|
ECHO Read Test
|
|
ECHO "Current Value of TVar is ${TVar}"
|
|
READ -P "Enter your name: " TVar
|
|
Echo "New TVar is ${TVar} "
|
|
Echo "End Test"
|