8f4c5219c4
Signed-off-by: Thomas Hochstein <thh@inter.net>
10 lines
142 B
Bash
10 lines
142 B
Bash
#!/bin/bash
|
|
cd ~/usevote
|
|
mkdir $1
|
|
cd $1
|
|
sed s/LOCALPART/$1/g ../usevote.tpl.cfg > usevote.cfg
|
|
mkdir tmp
|
|
mkdir done
|
|
|
|
echo "Voting $1 created!"
|