Mac OS X 中 Bash 脚本中的 SFTP 命令
我需要使用 SFTP 和 SSH 从 Mac 主机将文本文件传输到远程 PC (freeSSH)。这两个连接在本地网络中。
那么有没有办法从 Bash 脚本内部运行 SFTP 命令(使用提供的用户名和密码)?
我已经尝试使用 expect
编写一些脚本,但没有得到任何结果。
我发现了类似的帖子,如何使用 Bash 脚本中的密码运行 sftp 命令,但它适用于 Linux。我有一台Mac。
I need to transfer a text file to a remote PC (freeSSH) using SFTP and SSH from a Mac host. These two are connected in a local network.
So is there a way to run an SFTP command (with the username and password provided) from inside the Bash script?
I already tried some scripting with expect
, but I didn't get any results.
I found a similar post, How to run the sftp command with a password from a Bash script, but it is for Linux. I have a Mac.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您也可以在 Mac 上下载并安装 sshpass。从此下载链接获取最新版本源
使用 sshpass 的其余步骤是在我的链接答案中。
You can download and install sshpass on Mac as well. Get the latest version source from this download link
Rest of the steps on using sshpass are there in the linked answer of mine.
lftp
非常适合编写 ftp(以及 sftp、ftps)脚本。您可以使用 brew 安装它:lftp
is great for scripting ftp (and sftp, ftps). And you can install it with brew:要使用自制程序安装最新版本的 sshpass:
您可能必须执行以下操作才能安装它:
And for installing the latest version of sshpass using homebrew:
You might have to do this to install it:
尽管@anubhava的答案是正确的,但它仅指向来源,并且在没有帮助的情况下编译它是很困难的。
要使用
brew
在 MacOS 上轻松安装sshpass
,请使用此非官方软件包:来源:https://gist.github.com/arunoda/7790979
Although @anubhava's answer is correct, it points to the sources only and compiling it without help is hard.
To install
sshpass
on MacOS usingbrew
easily please use this unofficial package:Source: https://gist.github.com/arunoda/7790979