/usr/bin/linkify-filelist is in xbuilder 1.0.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 | #!/usr/bin/awk -f
BEGIN { FS=" : "; print "<html><head></head><body><table>"; }
// { print "<tr><td><a href=\""$1"\">"$1"</a></td><td>"$2"</td></tr>"; }
END { print "</table></body></html>"; }
|