rsync 将所有输出发送到 /dev/null

rsync 将所有输出发送到 /dev/null

我有以下 bash 命令

rsync -q host:/usr/files/client.txt /home/myuser/ 2>&1>/dev/null

但它仍然给了我

Unexpected local arg: /home/myuser/
If arg is a remote file/dir, prefix it with a colon (:).
rsync error: syntax or usage error (code 1) at main.c(1228) [Receiver=3.0.9]

我不知道如何继续并避免任何输出。

如果以下不起作用,如何使所有输出静音?

相关内容