8 lines
No EOL
87 B
Bash
Executable file
8 lines
No EOL
87 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "${1:0:1}" = '-' ]; then
|
|
set -- go-charts "$@"
|
|
fi
|
|
|
|
exec "$@" |