2021-12-15

Towards a proper FlightLog 11 -- The Library

#flightlog

Ok, so I bit the bullet ...

Writing a complete, commented index for The Library is still to be done. Since I am lazy, a shell one liner must serve as starting point:

find . -maxdepth 1 -type d | grep -v '^\.


 | LANG=C sort | while read D ; do echo "### $D" ;  find $D -type f|sed 's|^|=> /library/|'; done > auto_index.gmi

The Library Index

generated index, therefore complete

Cheers,

~ew

Home