mirror of
https://github.com/Arvanaghi/CheckPlease
synced 2026-06-08 10:25:16 +00:00
6 lines
109 B
Python
6 lines
109 B
Python
import socket
|
|
import sys
|
|
|
|
if socket.getfqdn().lower() == " ".join(sys.argv[1:]).lower():
|
|
print("Proceed!")
|