💾 Archived View for lyk.so › gemlog › index.gmi.sh captured on 2024-07-08 at 23:49:27.

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