|
The fastest way may be via 'virtual directories' but it is dependent on the type of operating system of the other server. If the other server is an AS/400 you can create a virtual directory
Md '/qfilesvr.400/TargetMachine'
If the other server is Windows you can create
Md '/qntc/TargetMachine'
For both, TargetMachine is the name of the target machine (i.e you need to be able to ping it from your AS/400). After the virtual directory is ready just copy the file.
Cpy '/home/myfile.bmp' '/qfilesvr.400/TargetMachine/home/myfile.bmp'
|