Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
14af6b720f | |||
c22e34afb2 | |||
d7f1104f82 |
54
ufwd
54
ufwd
@@ -21,6 +21,30 @@ usage() {
|
||||
printf ' -D [sec] # Set the check interval.\n'
|
||||
}
|
||||
|
||||
upload() {
|
||||
declare file=$1
|
||||
|
||||
upload_output=$( ufw -R "$@" "$file" )
|
||||
upload_return=$?
|
||||
|
||||
echo "ufw $* -R $file"
|
||||
|
||||
if (( flag_enable_notifications )); then
|
||||
if (( $upload_return )); then
|
||||
notify-send 'ufwd' "File upload failed: $upload_output"
|
||||
else
|
||||
notify-send 'ufwd' "File uploaded: $upload_output"
|
||||
fi
|
||||
fi
|
||||
|
||||
if (( flag_enable_clipboard )); then
|
||||
read -r fl <<< "$upload_output"
|
||||
xclip <<< "$fl"
|
||||
fi
|
||||
|
||||
printf '%s\n' "$upload_output"
|
||||
}
|
||||
|
||||
main() {
|
||||
while (( $# )); do
|
||||
case "$1" in
|
||||
@@ -31,6 +55,8 @@ main() {
|
||||
|
||||
(--notify|-n) flag_enable_notifications=1;;
|
||||
|
||||
(--clipboard|-c) flag_enable_clipboard=1;;
|
||||
|
||||
(--) shift; break;;
|
||||
(-*)
|
||||
err "Unknown key: $1"
|
||||
@@ -52,30 +78,12 @@ main() {
|
||||
fi
|
||||
fi
|
||||
|
||||
mkdir -p "$cfg_workdir" || {
|
||||
return 1
|
||||
}
|
||||
mkdir -p "$cfg_workdir" || return 1
|
||||
cd "$cfg_workdir" || return 1
|
||||
|
||||
cd "$cfg_workdir" || {
|
||||
return 1
|
||||
}
|
||||
|
||||
while sleep "$cfg_scan_delay"; do
|
||||
for i in *; do
|
||||
upload_output=$( ufw "$@" -R "$i" )
|
||||
upload_return=$?
|
||||
|
||||
if (( flag_enable_notifications )); then
|
||||
if (( $upload_return )); then
|
||||
notify-send 'ufwd' "File upload failed: $upload_output"
|
||||
else
|
||||
notify-send 'ufwd' "File uploaded: $upload_output"
|
||||
fi
|
||||
fi
|
||||
|
||||
printf '%s\n' "$upload_output"
|
||||
done
|
||||
done
|
||||
while read -r dir action path; do
|
||||
upload "$dir$path" &
|
||||
done < <( inotifywait -m -e create "$cfg_workdir" )
|
||||
}
|
||||
|
||||
main "$@"
|
||||
|
Reference in New Issue
Block a user