mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-30 04:36:38 +02:00
5849092137
with a new module API. Is currently not autoconf'ied, makefile'ed, etc. May the screaming commence.
10 lines
130 B
Bash
Executable File
10 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
var1=DONTSTOPTHEMUSIC
|
|
until [ "$var1" = "" ]
|
|
do
|
|
read var1
|
|
if [ "$var1" != "" ]; then
|
|
$1 $2 $3 $4 $5 $var1;
|
|
fi
|
|
done
|