A2osX/TESTS/IFFDTEST.txt

42 lines
650 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

NEW
PREFIX
AUTO 4,1
#!/BIN/SH
#
#
#
echo \f IFFDTEST Script
echo \n\n
echo Testing for this File using -E
IF [ -E /PKA2OSX/TESTS/IFFILETEST ]
Echo Found by full path
ELSE
Echo Not Found
FI
echo Testing for this Dir using -E
IF [ -E /PKA2OSX/TESTS ]
Echo Found by full path
ELSE
Echo Not Found
FI
echo Testing for IFFILETEST
IF [ -E IFFILETEST ]
Echo Found
ELSE
Echo Not Found
FI
echo Testing for ../MANPAGES
IF [ -E ../MANPAGES ]
Echo Found
ELSE
Echo Not Found
FI
echo Testing for IFFILETEST2
IF [ -E IFFILETEST2 ]
Echo Found
ELSE
Echo Not Found
FI
MAN
TEXT /MAKE/USR/SHARE/TESTS/IFFDTEST