I am trying to use this Ubuntu command on a Linux OS in python
cmd = "grep -n 'str' file.txt"
in the script, im trying to use
command = os.system(cmd)
but when i try to print the variable, it only prints a '0'
, but in the output appears 1:str
. Is there a way to make set this output as a variable?