💾 Archived View for gemini.smallweb.space › gemlog › attach › luser.txt captured on 2023-05-24 at 17:47:45.

View Raw

More Information

⬅️ Previous capture (2023-01-29)

🚧 View Differences

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

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