diff --git a/README.md b/README.md index 78f8e9e..5d97f27 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/chunk-many b/chunk-multiple similarity index 100% rename from chunk-many rename to chunk-multiple diff --git a/pack-multiple-without-upload b/pack-multiple similarity index 58% rename from pack-multiple-without-upload rename to pack-multiple index f976e50..46a1b32 100755 --- a/pack-multiple-without-upload +++ b/pack-multiple @@ -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 diff --git a/pack-one-without-upload b/pack-one similarity index 100% rename from pack-one-without-upload rename to pack-one