💾 Archived View for lyk.so › gemlog › index.gmi.sh captured on 2022-07-16 at 18:48:32.

View Raw

More Information

-=-=-=-=-=-=-

#!/usr/bin/env sh

cat <<EOF
# lykso's gemlog

Here lives a linear record of my thoughts and of the evolution of this gemsite in reverse chronological order.

## entries

EOF

ls ???-*.gmi | sort -r | while read entry; do
  created="$(date -u -I --date="@$(stat -c '%W' $entry | cut -d' ' -f1)")"
  echo "=> $entry $created $(head -n1 $entry | cut -d' ' -f2-)"
done