瀏覽代碼

Add prefix to stager.sh output

master
Roelf Wichertjes 2 年之前
父節點
當前提交
678833eea0
簽署人: rewby GPG Key ID: 4C2B6D2972EE5423
共有 1 個文件被更改,包括 5 次插入5 次删除
  1. +5
    -5
      stager.sh

+ 5
- 5
stager.sh 查看文件

@@ -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


Loading…
取消
儲存