A2osX/TESTS/LOG.txt

35 lines
592 B
Plaintext
Raw Permalink 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
#
# This script will display the output of a BUILDTEST log file using MORE
#
SET B = $1
IF [ -Z $B ]
READ -P "WHICH BUILD: " B
FI
IF [ -Z $B ]
ECHO "You did not enter any response."
ECHO
ECHO "Press Return to Continue"
PAUSE
EXIT
FI
IF [ -F ${ROOT}VAR/LOG/TESTS/BUILD.${B} ]
MORE ${ROOT}VAR/LOG/TESTS/BUILD.${B}
ECHO
ECHO
ECHO "Press Return to Continue"
PAUSE
ELSE
ECHO
ECHO
ECHO "No Log exists for ${B}"
ECHO
ECHO "Press Return to Continue"
PAUSE
FI
MAN
TEXT /MAKE/USR/SHARE/TESTS/LOG