#!/usr/bin/env python3 # https://cirosantilli.com/linux-kernel-module-cheat#python import time i = 0 while True: print(i) time.sleep(1) i += 1