mirror of
https://github.com/A2osX/A2osX.git
synced 2024-11-03 12:06:05 +00:00
16 lines
259 B
Plaintext
16 lines
259 B
Plaintext
#!/BIN/SHELL
|
|
echo \f IFDIRTEST Script
|
|
echo \n\n
|
|
echo Testing for this Dir
|
|
IF [ -D /PKA2OSX/TESTS ]
|
|
Echo Found Tests by full path
|
|
ELSE
|
|
Echo Tests Not Found
|
|
FI
|
|
echo Testing for /BLANK
|
|
IF [ -D /BLANK ]
|
|
Echo Found /Blank
|
|
ELSE
|
|
Echo No /BLANK
|
|
FI
|