7 lines
93 B
Bash
7 lines
93 B
Bash
#!/usr/bin/bash
|
|
|
|
if [ $# -gt 0 ]; then
|
|
exec "$@"
|
|
else
|
|
exec /usr/local/bin/wingmate
|
|
fi |