我有以下命令在本地计算机上正常运行。
watch -t -n1 "echo `date '+%Y-%m-%d %H:%M:%S'` | tee -a Time.txt" &>/dev/null &
但是当我从远程计算机运行它时,我不会创建预期的输出,即不会创建Time.txt,也不会作为后台进程运行。
ssh ipaddress watch -t -n1 "echo `date '+%Y-%m-%d %H:%M:%S'` | tee -a Time.txt" &>/dev/null &
请帮我解决这个问题。我已经尝试了多种选项,例如将','用于监视命令,但它没有帮助我。
答案 0 :(得分:1)
您的shell语法不正确:explainshell
并在运行命令时抛出此错误:
Error opening terminal: unknown.
您应该使用选项-t
-t Force pseudo-tty allocation. This can be used to execute arbitrary screen-based programs on a
remote machine, which can be very useful, e.g. when implementing menu services. Multiple -t
options force tty allocation, even if ssh has no local tty.
引用整个命令并将其传递给ssh,并在必要时转义字符。附上explainshell
ssh -t ipaddress 'watch -t -n1 "echo `date +%Y-%m-%d\ %H:%M:%S` | tee -a Time.txt" \&\>/dev/null \&'
答案 1 :(得分:0)
echo
输出子shell的结果。tee
附加到文件。watch
逗留一秒钟。试试这个。
ssh -t ipaddress 'while sleep 1; do date +%Y-%m-%d\ %H:%M:%S >> Time.txt; done &'