I need to run the following (working) command in Python:
ip route list dev eth0 | awk ' /^default/ {print $3}'
Using subprocess, I would have to do the following:
first = "ip route list dev eth0"
second = "awk ' /^default/ {print $3}'"
p1 = subprocess.Popen(first.split(), stdout=subprocess.PIPE)
p2 = subprocess.Popen(second.split(), stdin=p1.stdout, stdout=subprocess.PIPE)
p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
output = p2.communicate()[0]
Something went wrong with p2. I get:
>>> awk: cmd. line:1: '
awk: cmd. line:1: ^ invalid char ''' in expression
What should I do? On a terminal it works perfectly.