标签: ssh
例如:
ssh me@remote "du -sh"
会导致:
du -sh 5M .
不仅仅是命令输出:
5M .
注意:使用du仅用于说明目的。
谢谢, 扎克
答案 0 :(得分:3)
ssh me@remote "sh -x -c 'du -sh'"