Files
date/test_fail.sh
T
fkobi 632af88e80 test_fail.sh: call /bin/sh
This is a simple shell script using no bash functionalty.

Closes: https://github.com/HowardHinnant/date/issues/854
2025-01-09 10:41:17 -05:00

10 lines
70 B
Bash
Executable File

#!/bin/sh
echo $1
eval $1
if [ $? -eq 0 ]; then
exit 0;
fi
exit 1;