1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-30 04:36:38 +02:00
Files
unrealircd/velcro/epl
T
stskeeps 5849092137 - Adding Velcro (the build system from unreal4), for some experimentation
with a new module API. Is currently not autoconf'ied, makefile'ed, etc.
  May the screaming commence.
2007-06-04 21:05:36 +00:00

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