aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorDima Dorfman <dd@FreeBSD.org>2001-06-18 21:57:24 +0000
committerDima Dorfman <dd@FreeBSD.org>2001-06-18 21:57:24 +0000
commitcfd1472cef4c0624d739b85fe5e1d04adab5d761 (patch)
treeb5441cff844ff9a5e15384ae1acca77a65b38c19 /gnu/usr.bin
parent7b32dc4ee40ff2c9c95ea8cc8b37a20794082719 (diff)
downloadsrc-cfd1472cef4c0624d739b85fe5e1d04adab5d761.tar.gz
src-cfd1472cef4c0624d739b85fe5e1d04adab5d761.zip
When processing -a, strip off the path of the argument before copying
it to the output. Reviewed by: alex
Notes
Notes: svn path=/head/; revision=78438
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/send-pr/send-pr.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/usr.bin/send-pr/send-pr.sh b/gnu/usr.bin/send-pr/send-pr.sh
index 8518b586e34d..60784e3b5164 100644
--- a/gnu/usr.bin/send-pr/send-pr.sh
+++ b/gnu/usr.bin/send-pr/send-pr.sh
@@ -169,15 +169,16 @@ while [ $# -gt 0 ]; do
echo "$USAGE" ; exit 1;
fi
if [ -e "$2" -a ! -d "$2" ]; then
+ PRETTY_NAME=`basename $2`
if file $2 | grep "text" >/dev/null 2>/dev/null ; then
ATTACHED_FILES="$ATTACHED_FILES
---- $2 begins here ---
+--- $PRETTY_NAME begins here ---
`cat \"$2\"`
---- $2 ends here ---
+--- $PRETTY_NAME ends here ---
"
else
ATTACHED_FILES="$ATTACHED_FILES
-`uuencode \"$2\" < \"$2\"`
+`uuencode \"$PRETTY_NAME\" < \"$2\"`
"
fi
shift;