9 lines
170 B
Python
9 lines
170 B
Python
# Gets ls output and transform it into <a> tag
|
|
|
|
while True:
|
|
|
|
try:
|
|
a = input()
|
|
except:
|
|
break;
|
|
print('<a href=\'' + a + '\'>' + a + '</a>')
|