formatting
parent
012e7f58d2
commit
435c7f8ed5
|
@ -1,14 +1,16 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
inotifywait -m ./testinotify -e create -e moved_to |
|
inotifywait -m ./path -e create -e moved_to |
|
||||||
while read dir file; do
|
while read file; do
|
||||||
|
TITLE=$(echo "$file" | awk '{$1=""; print $0}') #formatting
|
||||||
curl \
|
curl \
|
||||||
-u :ntfy_token_goes_here \
|
-u :ntfy_token_goes_here \
|
||||||
-H "Priority: urgent" \
|
-H "Priority: urgent" \
|
||||||
-H "Tags: arrow_down" \
|
-H "Tags: arrow_down" \
|
||||||
-H "Title: Download Complete" \
|
-H "Title: Download Complete" \
|
||||||
-d "$file" \
|
-d "$TITLE" \
|
||||||
https://ntfy_url_goes_here
|
https://ntfy_url_goes_here
|
||||||
done
|
done
|
||||||
|
|
||||||
# Source: https://unix.stackexchange.com/questions/24952/tool-to-monitor-folder-for-new-files-and-run-command-whenever-new-file-is-detect
|
# Source: https://unix.stackexchange.com/questions/24952/tool-to-monitor-folder-for-new-files-and-run-command-whenever-new-file-is-detect
|
||||||
|
# Source: https://stackoverflow.com/questions/2961635/using-awk-to-print-all-columns-from-the-nth-to-the-last
|
||||||
|
|
Loading…
Reference in New Issue