mirror of
https://github.com/A2osX/A2osX.git
synced 2024-11-06 01:07:32 +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 $?"
|