如何将LFTP
结果保存在变量中,以便稍后在我的脚本中使用它。
这是我的基本命令:
lftp -c 'open -e "mirror /path/to/remote /path/to/local/" ftp://username:password@ftp.domain.com:21'
显然这不起作用:
#!/bin/bash
output=""
lftp -c 'open -e "mirror /path/to/remote /path/to/local/" ftp://username:password@ftp.domain.com:21' > $output
echo "Test: " $output
修改
似乎问题是使用lftp -c
不会创建任何输出。因此变量是空的。所以问题是从lftp
得到输出。
答案 0 :(得分:0)
使用Command Substitution
将命令的输出存储在变量中:
output=`lftp -c 'open -e "mirror /path/to/remote /path/to/local/" ftp://username:password@ftp.domain.com:21'`
echo "Test: ${output}"