mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-29 02:22:09 +08:00
3a968c67e1
old-commit-hash: 94eb2159802d3dba99620db0b08731c68a7e4733
9 lines
188 B
Python
Executable File
9 lines
188 B
Python
Executable File
#!/usr/bin/env python3
|
|
import os
|
|
import sys
|
|
from system.loggerd.uploader import UPLOAD_ATTR_NAME
|
|
|
|
for fn in sys.argv[1:]:
|
|
print(f"unmarking {fn}")
|
|
os.removexattr(fn, UPLOAD_ATTR_NAME)
|