Bash Question or maybe it's just an Autorecon question:
I am trying to suppress any output back to the cli. I am stringing a bunch of tools together nmap, dirb, autorecon and other.
I can in do
autorecon > /dev/null
but this only forces the output of the initial startup of the code to be hidden but after a few minutes it starts putting the logging onto the screen.
I also tried flags --silent and -v0 but the actually just stop the entire code from running (so no hidden in commands)