nohang/trash/memleak/memleak
Alexey Avramov ff16461a56 add psi-top
2019-05-10 03:42:01 +09:00

13 lines
159 B
Python
Executable File

#!/usr/bin/env python3
from os import system
from time import sleep
x = []
while True:
x.append('#' * 99999)
sleep(0.1)
system('sleep 9999 &')