mirror of
https://github.com/HowardHinnant/date.git
synced 2025-06-25 01:01:33 +02:00
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
|