在使用 FTP 时,我们可以使用选项bi
以二进制模式传输文件,但是我在 SFTP 中找不到类似的选项。请在下面找到我的代码片段..
fileTransferToDEST()
{
echo "mput $4/$1 $3/" | sftp -b - $SRV_USER@$DEST_IP
}
fileTransferToDEST $filename $logpathwithfilename $destinationpath $sourcepath
returnvalue=$?
if [ "$returnvalue" != "0" ]; then
echo;echo "FTP : Failed while transfering"
exit 2
fi
请指教。提前致谢。
OpenSSH
sftp
仅支持二进制模式。所以是隐含的。另请参阅如何在 SFTP 中传输二进制文件?(关于堆栈溢出)