When processing -a, strip off the path of the argument before copying

it to the output.

Reviewed by:	alex
This commit is contained in:
Dima Dorfman 2001-06-18 21:57:24 +00:00
parent 7b32dc4ee4
commit cfd1472cef
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=78438

View File

@ -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;