SAP에서는 직접적으로 SFTP 연결이 안된다고 알고 있습니다. (아니면 댓글 달아주세요.)그래서 SAP 서버에 shell파일을 만들어놓고 실행하는 방법으로 우회할 수 있습니다. 1. Shell 파일 생성 후 SAP서버에 업로드#!/bin/bashUSER="id"PASS="password"TARGET="ip"PORT="port"DIR_SOURCE="/local/directory"DIR_TARGET="/remote"## If filename is exist, then execute sftp. if [ -n "$1" ]; then FILE="$1" expect " { send "lcd ${DIR_SOURCE}\r"} expect "sftp>" { send "cd ${DIR_TARGET}\r"} expect ..