12 lines
202 B
Bash
Executable File
12 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
# Start HamClock
|
|
|
|
HAMCLOCK="$HOME/.local/bin/hamclock"
|
|
|
|
if [ ! -x "$HAMCLOCK" ]; then
|
|
echo "Error: hamclock not found or not executable at $HAMCLOCK" >&2
|
|
exit 1
|
|
fi
|
|
|
|
"$HAMCLOCK" "$@" &
|