Procházet zdrojové kódy

Add prefix to stager.sh output

master
Roelf Wichertjes před 2 roky
rodič
revize
678833eea0
Podepsáno: rewby ID GPG klíče: 4C2B6D2972EE5423
1 změnil soubory, kde provedl 5 přidání a 5 odebrání
  1. +5
    -5
      stager.sh

+ 5
- 5
stager.sh Zobrazit soubor

@@ -6,15 +6,15 @@ STAGING="$2"
OUTPUT="$3"

while true ; do
echo "Attempting to move files..."
echo "[Stager] Attempting to move files..."
COUNT=$(find "$INPUT" -type f | wc -l)
if [[ $COUNT -ne 0 ]]; then
echo "Found $COUNT files!"
echo "Moving from input to staging..."
echo "[Stager] Found $COUNT files!"
echo "[Stager] Moving from input to staging..."
mv -v "$INPUT"/* "$STAGING/" || true
echo "Atomically moving from staging to output..."
echo "[Stager] Atomically moving from staging to output..."
mv -v "$STAGING"/* "$OUTPUT/" || true
fi
sleep 5
sleep 30
done


Načítá se…
Zrušit
Uložit