duplicated files

This commit is contained in:
Mo Langning
2024-02-14 12:24:12 +00:00
parent 9c8ce30b42
commit d0b72e7e31
12 changed files with 11585 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/python3
import os
import sys
import xml.etree.ElementTree as ET
if not sys.argv[1]:
exit(0)
files=sys.argv[1].split(" ")
for i in files:
if not os.path.isfile(i):
print("[!] %s does not exist!"%(i))
exit(2)
for i in files:
ET