1
2
3
4
5
6
#!/bin/sh
if ! [[ -p /run/plumber_fifo ]]; then
	echo >&2 "/run/plumber_fifo does not exist or is not a pipe"
	exit 1
fi
exec fakeplumb >/run/plumber_fifo "$@"