bulkupdate

This commit is contained in:
Tobias Kessels
2018-08-10 16:48:08 +02:00
parent 9178547b18
commit c541217a52
5 changed files with 34 additions and 1 deletions
Executable
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/python3
from urllib.parse import unquote
import html
import sys
url=' '.join(sys.argv[1:])
print(html.unescape(unquote(url)))