Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
instructions: script to generate passwords, room list
  • Loading branch information
krokodilerian committed Jan 28, 2018
1 parent 6f68191 commit c3835e0
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
15 changes: 15 additions & 0 deletions instructions/sources/mkplaintext.sh
@@ -0,0 +1,15 @@
#!/bin/bash -e

cd `dirname "$0"`

for d in 1 2; do
for r in `cat rooms`; do
p=`apg -m8 -n1 -E ':$%><"'`
echo "${d}-${r}:${p}"
done
done

for i in `seq 0 9`; do
p=`apg -m8 -n1 -E ':$%><"'`
echo "voc${i}:${p}"
done
24 changes: 24 additions & 0 deletions instructions/sources/rooms
@@ -0,0 +1,24 @@
aw1120
aw1121
aw1125
aw1126
h1301
h1302
h1308
h1309
h2213
h2214
h2215
janson
k1105
k3201
k3401
k4201
k4401
k4601
ua2114
ua2220
ub2252a
ud2119
ud2120
ud2218a

0 comments on commit c3835e0

Please sign in to comment.