Friends ,
Using the following script I can FTP a file from a remote machine but I cannot
gunzip that file at a time .The script is :
-----------------------------------
x=scott.dmp.gz
ftp -i -v -n 192.168.1.1 <<END_FTP
user oracle Oracle
binary
cd /dump
get $x
bye
gunzip $x
-------------------------------------
Would anybody plz tell me , how can I gunzip that file using a one script .
Waiting for reply ... ...