Hi I'm working with a python script, and I need to run some terminal commands but I dont want to see the result of them. I'm using this code:
comando = ('fping -c1 -g 192.168.1.0/24')
valor = os.system((comando))
comando = ('arp -n > /home/edgar/Documentos/wips/arp')
valor = os.system((comando))
The terminal show me the list of the fping command.
Is there a way to do what I want?