mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
7 lines
98 B
Bash
Executable File
7 lines
98 B
Bash
Executable File
#!/bin/sh
|
|
what="$*"
|
|
if [ -z "$what" ]; then
|
|
what="pause for dancing"
|
|
fi
|
|
exec bannerfish "$what"
|