This commit is contained in:
Aviv "RustyStriker" Romem 2022-06-11 13:32:33 +03:00
parent 018772f321
commit c108f98432
3 changed files with 80 additions and 0 deletions

9
bscripts/ls_to_a.py Normal file
View file

@ -0,0 +1,9 @@
# Gets ls output and transform it into <a> tag
while True:
try:
a = input()
except:
break;
print('<a href=\'' + a + '\'>' + a + '</a>')