💾 Archived View for gemini.smallweb.space › gemlog › attach › luser.txt captured on 2024-05-12 at 15:12:44.
⬅️ Previous capture (2023-05-24)
-=-=-=-=-=-=-
#!/bin/bash . /etc/efingerd/log UHOME=/home/"$3"/ PLAN="$UHOME"/.plan PROJ="$UHOME"/.project PGP="$UHOME"/.pgpkey echo "" if test -f "$PLAN"; then echo "############" echo "### Plan ###" echo "############" echo "" cat "$PLAN" else echo "No Plan" fi echo "" if test -f "$PROJ"; then echo "#############" echo "## Project ##" echo "#############" echo "" cat "$PROJ" else echo "No Project." fi echo "" if test -f "$PGP"; then echo "#############" echo "## PGP Key ##" echo "#############" echo "" cat "$PGP" else echo "No PGP Key." echo "" fi