Files
CS361-Computer-Systems-II/p1-sh/tests/expected/B_export_unset.txt
T
2026-05-31 14:34:00 -04:00

10 lines
109 B
Plaintext

$ which export
export: dukesh built-in command
$ echo N=${NUM}
N=
$ export NUM=5
$ echo N=${NUM}
N=5
$ quit