Changing how the shell script generates the file name

The mvsprpsm.sh shell script contains the following lines, which cause the MVS Download Receiver shell script to include the MVS job identifier in the name of the file generated by the shell script:

# Rename the downloaded file to include the MVS job id (comment out
# if this behavior is not desired)
if [ "$paopt" != "" ; then
   JID=${paopt##*jobid=}
   if [ "$JID" != "$paopt" ] ; then
      JID=${JID%%, *}
      if [ "$JID" != "" ]; then
         mv $filename $JID.$filename
         filename=$JID.$filename
         mv $logfile $JID.$logfile
         logfile=$JID.$logfile
      fi
   fi
fi

If you do not want the MVS job identifier included, comment out the lines.