Python Forum
Grep command and variable in a script
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Grep command and variable in a script
#1
Hi, I'm creating a script wherein I want to grep all a specific address based on the list?

before what I usually do run a grep 1 by 1 using this command ex. grep "192.168.1.1" *

Now I'm creating a script.

Example of the output.
print(i) output.
192.168.1.0
192.168.1.1
192.168.1.2
192.168.1.3

but how to call the list and put into loop under os.system so I can grep all the list?

import ipaddress
import os
    
#Ask the ipaddress in CIDR format
ip = input("Enter the IP/CIDR: ")

os.chdir("/rs/configs")
print("pwd=%s" % os.getcwd())

for i in ipaddress.IPv4Network(ip):
    print (i)
    os.system("grep" +i+ "*") #Grep from list and run to all directory *
Thanks
Reply
#2
set addr equal to the ip you want to grep:

import subprocess

cmd = "grep " + addr

returned_value = subprocess.check_output(cmd)

print('returned value:', returned_value)
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020