proxychains
proxychains copied to clipboard
Suppress proxychains message
ProxyChains output some message like the below. How can I suppress this message?
ProxyChains-?-? (http://proxychains.sf.net)
couple of options using nohup:
man nohup
first option with logging output replacing [] with command and args you want followed by second [] where you name the file for logged output to be saved, don't use [] rather text only
nohup proxychains [command with args as normal] &> [name of file to log output]&
nohup proxychains [command with args as normal] </dev/null >/dev/null 2>&1 &
example:
nohup proxychains youtube-dl https://www.youtube.com/watch?v=VeAK7Bv4F1o </dev/null >/dev/null 2>&1 &
Stale issue message