Dashboard
PHP:
8.1.34
OS:
Linux
User:
uid288609
/
/
usr
/
share
/
rsync
/
scripts
📤 Upload
📝 New File
📁 New Folder
Close
Editing: rsync-no-vanished
#!/usr/bin/env bash IGNOREEXIT=24 IGNOREOUT='^(file has vanished: |rsync warning: some files vanished before they could be transferred)' set -o pipefail rsync "${@}" 2>&1 | (egrep -v "$IGNOREOUT" || true) ret=$? if [[ $ret == $IGNOREEXIT ]]; then ret=0 fi exit $ret
Save
Cancel