我想将测试文件传输到大型机,但测试文件的行数超过 80 个字符,这是 FTP 的默认设置。因为创建的数据集的记录长度为 80,所以我得到
451-File transfer failed. File contains records that are longer than the LRECL of the new file.
错误。我试过这个;
curl --ftp-ssl -k -v -B -T BBBBB -u USERNAME:PASS ftp://HOST_NAME:PORT/'DATASET_NAME(BBBBB)'
为了解决这个问题,我添加了-Q "site lrecl=250"
,但这没有帮助。