suppress unwanted shell expansion

This commit is contained in:
BVK Chaitanya 2010-07-23 02:57:02 +05:30
parent 54416e9d71
commit 645505004e
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ done
if [ "x${source}" = x ] ; then
tmpfile=`mktemp`
while read REPLY; do
echo $REPLY >> ${tmpfile}
echo "$REPLY" >> ${tmpfile}
done
source=${tmpfile}
fi