fwiw, I wrote a bash script to run gsktrace and ftp it to a Windows FTP server. 
 (I connect to z/OS using SSH to run it.)

>cat gskput
#!/bin/bash
HOST='winpc'
USER='winuserid'
PASSWD='winpwd'

cd /tmp
rm /tmp/gsk.out
gsktrace /tmp/gskmack.trc > /tmp/gsk.out

ftp -n -v $HOST << EOT
ascii
user $USER $PASSWD
prompt
cd /C/Temp/
put /tmp/gsk.out /C/Temp/gsk.out
quit
EOT
rm gskmack.tmp
rm gsk.out

Transferring it as ascii works for me.

(/C/Temp/ is mapped by the FTP server to a folder on the Windows PC.) 

hth,
Wendell

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to