mirror of https://github.com/dirtbags/moth.git
22 lines
282 B
Plaintext
22 lines
282 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
# Use first installed binary
|
||
|
for bin in /opt/*/bin/$1; do
|
||
|
if [ -x $bin ]; then
|
||
|
exec $bin
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
cat <<EOD
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>$1</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>$1</h1>
|
||
|
<p>No $1 binary installed!</p>
|
||
|
</body>
|
||
|
</html>
|
||
|
EOD
|