mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
6aeac862c2
PR: 8025 Submitted by: maintainer
12 lines
302 B
Bash
12 lines
302 B
Bash
#!/bin/sh
|
|
# ---------- pgpencrypt ---------
|
|
# 21.03.96 Roland Rosenfeld <roland@spinnaker.rhein.de>
|
|
# Wed 16 Sep 1998 23:46:43 WST Anthony Di Pietro <anthony@dino.omen.com.au>
|
|
# Modified to work with both PGP v2 and PGP v5.
|
|
if [ -x /usr/local/bin/pgpe ]
|
|
then
|
|
pgpe -s -a -r $*
|
|
else
|
|
pgp -feast $*
|
|
fi
|