通过ssh远程回显pwd

时间:2014-02-17 17:08:15

标签: ssh pwd

我需要一台远程计算机来打印托管在其上的给定文件的绝对路径,所以我这样做:

ssh me@remote.host.net "echo '$(pwd)/file.txt'"

这种方式太糟糕pwd评估本地,而不是远程评估。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

翻转引号:

ssh me@remote.host.net 'echo "$(pwd)/file.txt"'