mirror of
https://github.com/A2osX/A2osX.git
synced 2024-11-22 16:31:07 +00:00
12 lines
194 B
Plaintext
12 lines
194 B
Plaintext
#!/bin/shell
|
|
#
|
|
# test CD command gives errors back
|
|
#
|
|
CD HHH
|
|
echo "return code was $?"
|
|
CD ..
|
|
echo "return code was $?"
|
|
CD ...
|
|
echo "return code was $?"
|
|
CD aaa
|
|
echo "return code was $?" |