mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-22 17:55:57 +01:00
12 lines
158 B
Python
Executable File
12 lines
158 B
Python
Executable File
#!/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
|