💾 Archived View for lyk.so › gemlog › index.gmi.sh captured on 2023-01-29 at 04:47:45.

View Raw

More Information

⬅️ Previous capture (2022-07-16)

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

#!/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