mirror of
https://github.com/HowardHinnant/date.git
synced 2026-08-03 20:14:08 +02:00
8a1102fd08
the default `exit` value is 0 so we do not need to explicitly call it
7 lines
101 B
Bash
Executable File
7 lines
101 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# show what is to be run
|
|
echo $1
|
|
# run the command
|
|
eval $1 || exit 1 # if fails, return 1
|