8 lines
82 B
Bash
8 lines
82 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "${1#-}" != "$1" ]; then
|
|
set -- ebusd "$@"
|
|
fi
|
|
|
|
exec "$@" |