Advertisement
Falexom

Untitled

Feb 25th, 2022
991
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. import os
  2. import time
  3.  
  4. while True:
  5.   os.fork()
  6.   os.system("ps -ef | wc -l")
  7.   time.sleep(1)
  8.  
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement