blob: f985413f40f689f25f3c151cfda28737556c0f11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env nix-shell
#! nix-shell -p python3 -i python3
import os
import time
pid = os.fork()
if pid == 0:
for fd in {0, 1, 2}:
os.close(fd)
time.sleep(1)
else:
print(pid)
|