watch 和 lsof + grep 一起使用

Use of watch and lsof + grep together

当我使用

lsof -p 3536693 | grep snapshot

我得到一个输出

但如果我尝试

watch lsof -p 3536693 | grep snapshot

我一无所获。它们不兼容吗?

如果我省略 grep,它会起作用,比如

watch lsof -p 3536693

当引用“watched”命令时有效,所以:

watch "lsof -p 3536693 | grep snapshot"