If you script your ftp with REXX you can use the following to convert a filename from uppercase to lowercase:
UPPER = 'FILENAME' LOWER = BITXOR(UPPER,,'40'X) PUT UPPER LOWER That would result in the command: PUT FILENAME filename You could then loop through all of the members of your pds and send them individually. -- Donald Grinsell State of Montana 406-444-2983 [email protected] "I am armed, And dangers are to me indifferent." -- Shakespeare, Julius Caesar ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

