mirror of
https://github.com/rkd77/elinks.git
synced 2025-06-30 22:19:29 -04:00
8 lines
76 B
Bash
Executable File
8 lines
76 B
Bash
Executable File
#!/bin/sh
|
|
|
|
d=$(dirname "$0")
|
|
|
|
for i in $d/*.html; do
|
|
readlink -f "$i"
|
|
done
|