mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
8 lines
76 B
Bash
8 lines
76 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
d=$(dirname "$0")
|
||
|
|
||
|
for i in $d/*.html; do
|
||
|
readlink -f "$i"
|
||
|
done
|