Browse Source

Uniform -many/-multiple script names.

master
Alard 11 years ago
parent
commit
1a1c099f46
4 changed files with 6 additions and 6 deletions
  1. +3
    -3
      README.md
  2. +0
    -0
      chunk-multiple
  3. +3
    -3
      pack-multiple
  4. +0
    -0
      pack-one

+ 3
- 3
README.md View File

@@ -46,9 +46,9 @@ Running
-------
In `screen`, `tmux` or something similar, run the scripts:

`./chunk-many` (run exactly one)
`./pack-many` (you may run more than one)
`./upload-many` (you may run more than one)
`./chunk-multiple` (run exactly one)
`./pack-multiple` (you may run more than one)
`./upload-multiple` (you may run more than one)

`touch RUN` before you start the scripts. Use `rm RUN` to stop gracefully.



chunk-many → chunk-multiple View File


pack-multiple-without-upload → pack-multiple View File

@@ -1,11 +1,11 @@
#!/bin/bash
# This loops the pack-one-without-upload script while the RUN file exists.
# See pack-one-without-upload for details.
# This loops the pack-one script while the RUN file exists.
# See pack-one for details.
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

while [[ -f RUN ]]
do
$SCRIPT_DIR/pack-one-without-upload
$SCRIPT_DIR/pack-one
result=$?
if [[ $result -ne 0 ]]
then

pack-one-without-upload → pack-one View File


Loading…
Cancel
Save