检查 ksh 中另一台服务器上是否存在目录
我试图在 Korn 中移动文件之前验证目录是否存在,使用经典:
if [[ -d ${dir} ]]; then
scp file
else
exit 12
fi
我的问题:
该目录位于另一台服务器上,因此每当我检查时,脚本都可以找不到它,因此每次都会失败并退出。
我的问题:
有没有办法通过网络执行“-d”,也许使用类似 sftp/scp 的功能? 用户目前不需要输入密码并且可以进行 scp 操作,因此少了一个问题。
I am trying to verify if a directory exists prior to moving a file in Korn, using the classic:
if [[ -d ${dir} ]]; then
scp file
else
exit 12
fi
My Problem:
That the directory is on another server, so whenever I check, the script can't find it and therefore fails and exits every time.
My Question:
Is there a way to do a "-d" across the network, perhaps using sftp/scp-like functionality? The user currently does not have to enter a password and can scp fine, so that is one less issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样
How about