默认情况下,当SSH进入客户端时,我会被自动放入/ home / marco /但我希望被放入/ something / other。我宁愿保留我的主目录,但我希望自动路由到/ something / other /
这可能吗?
*客户端运行Debian 5.04
答案 0 :(得分:3)
您可以在ssh中传递命令以在登录的同时更改目录:
ssh -t localhost "cd /tmp ; bash"
您可能会在别名后得到您想要的内容:
alias ssh-tmp='ssh -t localhost "cd /tmp ; bash"'
所以命令'ssh-tmp'将直接放入tmp目录。