-
Please describe your feature request:perhaps need a probes t0 make outputs append to one file Describe the use case of this feature: |
Beta Was this translation helpful? Give feedback.
Answered by
ehsandeep
May 14, 2022
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Mr-xn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
echo hackerone.com | httpx | tee -a output.txt
should be sufficient @Mr-xn? in this way, you can have both types of output files if you want, httpx output flag to write to file andtee -a
write all output to the same file?