mirror of
https://github.com/tildeclub/gopherhole.git
synced 2026-06-16 22:49:23 +00:00
init
This commit is contained in:
16
modified_users.py
Executable file
16
modified_users.py
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env python3
|
||||
import filecmp
|
||||
import os
|
||||
|
||||
def users():
|
||||
return sorted(os.listdir("/home"), key=lambda x: x.lower())
|
||||
|
||||
LINK = "1~{0} /~{0} tilde.club 70"
|
||||
|
||||
for user in users():
|
||||
if os.path.exists(f"/home/{user}/public_gopher/gophermap"):
|
||||
if not filecmp.cmp(
|
||||
"/etc/skel/public_gopher/gophermap",
|
||||
f"/home/{user}/public_gopher/gophermap", shallow=False):
|
||||
print(LINK.format(user))
|
||||
|
||||
Reference in New Issue
Block a user