mirror of
https://github.com/HowardHinnant/date.git
synced 2026-08-03 20:14:08 +02:00
632af88e80
This is a simple shell script using no bash functionalty. Closes: https://github.com/HowardHinnant/date/issues/854
10 lines
70 B
Bash
Executable File
10 lines
70 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo $1
|
|
eval $1
|
|
|
|
if [ $? -eq 0 ]; then
|
|
exit 0;
|
|
fi
|
|
exit 1;
|