|
Imprimer un fichier texte sur un AS/400 |
|
Vous avez un fichier sur votre PC que vous souhaitez imprimer sur votre as/400.
Voici une solution : utilisez FTP, ci-dessous l'impression d'un fichier :
>ftp votreas400
User (as400:(none)): votreuser
331 Enter password.
Password: votrepwd
230 votreuser logged on.
ftp> cd qsys 250 Current library changed to QSYS.
ftp> ascii 200 Representation type is ASCII nonprint.
ftp> put myfile.txt qsysprt local: votrefichier.txt remote: qsysprt
200 PORT subcommand request successful.
150 Sending file to member QSYSPRT in library QSYS.
250 File transfer completed successfully. 4240 bytes sent in 0.57 seconds (11.45 KB/s)
ftp> quit 221
QUIT subcommand received.
Vous pouvez utiliser un script pour automatiser.
PLB |
|
| ... |
|