dig -x +short to file 没有 STDERR

dig -x +short to file without STDERR

当我这样做时: 挖-x +短 我只得到主机输出, 但是在做 dig -x <ip> +short > file.txt 时我得到了所有的垃圾,就好像它不是用 +short.

执行的一样

我试过:

dig -x <ip> +short 2>&1 > file.txt

还有

dig -x <ip> +short 2>/dev/null > file.txt

但是没用,谢谢

作为 ,顺序很重要:

dig +short -x "$ip"