fork download
  1. import re
  2. text = "vagrant 11450 4344 0 Feb22 pts/2 00:00:28 python run.py abc"
  3. m = re.search(r'\d+:\d+\s+(.*)', text)
  4. if m:
  5. print(m.group(1))
Success #stdin #stdout 0.02s 6996KB
stdin
Standard input is empty
stdout
python run.py abc