Files

9 lines
98 B
Plaintext
Raw Permalink Normal View History

2026-05-31 14:34:00 -04:00
echo N=${NUM}
export NUM=5
echo N=${NUM}
unset NUM
echo N=${NUM}
export NUM=10
echo N=${NUM}
quit