Skip to content

Instantly share code, notes, and snippets.

[Unit]
Description=Create bind mount of / at /mnt/root
[Service]
Type=oneshot
ExecStart=/usr/bin/mount -B / /mnt/root
[Install]
WantedBy=-.mount
class C(object):
def __del__(self):
pass
i = 0
while True:
if i == 1000000:
i = 0
print '.',
c = C()
i += 1