Files
mercury/tools/not
Peter Ross 9c838a403e Add a file so that tools/binary will work correctly.
Estimated hours taken: 0.1

Add a file so that tools/binary will work correctly.

tools/not:
    added.
1998-06-18 06:22:31 +00:00

9 lines
48 B
Bash
Executable File

#!/bin/sh
if "$@"
then
exit 1
else
exit 0
fi