diff options
Diffstat (limited to '')
-rwxr-xr-x | SuckIt | 2 | ||||
-rwxr-xr-x | SuckItClean | 13 |
2 files changed, 15 insertions, 0 deletions
@@ -155,6 +155,8 @@ done | |||
155 | 155 | ||
156 | 156 | ||
157 | time notYetAnotherWiki.lua | 157 | time notYetAnotherWiki.lua |
158 | # No idea why yet, but needs a second run to sort out everything. Shouldn't take long anyway. | ||
159 | time notYetAnotherWiki.lua | ||
158 | 160 | ||
159 | popd | 161 | popd |
160 | } | 162 | } |
diff --git a/SuckItClean b/SuckItClean new file mode 100755 index 0000000..1b8a025 --- /dev/null +++ b/SuckItClean | |||
@@ -0,0 +1,13 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | TIMEFORMAT=" took %lR using %P%% CPU" | ||
4 | time { | ||
5 | pushd /opt/nyaw | ||
6 | |||
7 | rm -fr Foswiki/* | ||
8 | rm -fr PmWiki/* | ||
9 | rm -fr unsorted | ||
10 | rm -fr users/* | ||
11 | popd | ||
12 | ./SuckIt | ||
13 | } | ||