zk/zk

11 lines
106 B
Bash
Executable File

#!/bin/sh
main() {
echo "Hello, world"
}
name="$(basename "$0")"
if test "$name" = "zk"; then
main
fi