config - dotg - Day Of The GrParazyd | |
git clone git://bitreich.org/dotg git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d… | |
Log | |
Files | |
Refs | |
Tags | |
--- | |
config (556B) | |
--- | |
1 #!/bin/sh | |
2 | |
3 export path="/dotg/act-ii" | |
4 | |
5 export savegame="/br/gopher/dotg/act-ii/$REMOTE_ADDR" | |
6 export inventory="$savegame/inventory" | |
7 export cafeteria="$savegame/cafeteria" | |
8 | |
9 [ -d "$savegame" ] && return | |
10 | |
11 mkdir -p \ | |
12 "$inventory" \ | |
13 "$cafeteria" \ | |
14 | |
15 printf 1 > "$inventory/New_Thinkpad" | |
16 printf 1 > "$inventory/Plastic_bottle_of_rakia" | |
17 printf 1 > "$inventory/Smartphone" | |
18 printf 1 > "$inventory/Red_Lighter" | |
19 printf 20 > "$inventory/Cigarettes" | |
20 printf 200 > "$inventory/Euros" | |
21 | |
22 printf 1000 > "$cafeteria/Beers" | |
23 printf 1000 > "$cafeteria/Chocolate_Milks" |