Is it a must that notify is the final command in a pipe of several commands? #441
Replies: 1 comment
-
Got a way to this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to pipe my workflow like:
cat domains.txt|subfinder|notify -provider-config subs.yaml | custom-bugscans
Here the idea is I get subdomains and notify to my subdomains BOT then take the subdomains and pipe to custom scanner and pipe those to my BUGS BOT.
But it doesnt work:
sample:
echo test |notify -provider-config /root/httpx.yaml -silent | xargs -I {} echo ONE.{}
OUTPUT:
The final echo works as you can see BUT ❌NO NOTIFY NOTIFICATION WAS SENT !!❌
As long as notify is not the last in a pipe, it doesnt work at all
Am I missing something?
Beta Was this translation helpful? Give feedback.
All reactions