mk-all - gopher-lawn - The gopher lawn gopher directory project. | |
git clone git://bitreich.org/gopher-lawn/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhf… | |
Log | |
Files | |
Refs | |
Tags | |
--- | |
mk-all (176B) | |
--- | |
1 #!/bin/sh | |
2 | |
3 doupdate=1 | |
4 if [ "$1" = "-u" ]; | |
5 then | |
6 doupdate=0 | |
7 fi | |
8 | |
9 cat db/* categories/* | ./lawn-mower/lawn-mower.py | |
10 | |
11 if [ $doupdate -eq 1 ]; | |
12 then | |
13 ./lawn-update | |
14 fi | |
15 | |
16 ./mk-pearls | |
17 |