如何记录我的SFTP命令的输出

时间:2019-12-10 17:44:58

标签: unix logging sftp eof

这是我遇到的较大脚本中的一小段代码:

"aggregations": {
    "menus": {
      "doc_count": 2,
      "menu_aggregation": {
        "doc_count_error_upper_bound": 0,
        "sum_other_doc_count": 0,
        "buckets": [
          {
            "key": -571057,
            "doc_count": 1
          },
          {
            "key": 1022313,
            "doc_count": 1
          }
        ]
      }
    }

上面的任务很好,但是... 如何记录SFTP命令的操作?我尝试了各种选择,但似乎无济于事。

例如

sftp -o "StrictHostKeyChecking=no" -o "IdentifyFile=/export/home/myid/.ssh/id_rsa" data_cc@111.222.333.444 <<EOF
put  /u01/myfiles/file.zip
EOF

谢谢。

0 个答案:

没有答案