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