在 ssh 之前导出 TERM

发布于 2024-11-17 07:23:18 字数 583 浏览 4 评论 0原文

我在笔记本电脑上使用 TERM='xterm-256color',但必须在 xterm-256color 的远程服务器上使用 TERM='xterm' code> 不可用并且破坏了一些东西。

到目前为止我可以做 export TERM='xterm'; ssh -X 123.45.678.90,效果很好。但是将上一行放入 (zsh) 别名 (alias sshx="export TERM='xterm'; ssh -X 123.45.678.90") 似乎并不工作。例如,如果我在 exportssh 之间插入 echo $TERM,则在命令行中执行的所有操作都会回显 xterm code>,但别名为 xterm-256color

当然,最佳情况是,TERMssh 之后被设置回其初始值。

有办法实现这一点吗?

谢谢。

I'm using TERM='xterm-256color' on my laptop but have to use TERM='xterm' on a remote server where xterm-256color is not available and breaks down a few things.

So far I can do export TERM='xterm'; ssh -X 123.45.678.90, which works fine. But putting the previous line in an (zsh) alias (alias sshx="export TERM='xterm'; ssh -X 123.45.678.90") doesn't seem to work. E.g., if I insert a echo $TERM between the export and the ssh, doing everything in the command line echoes xterm, but the alias gives xterm-256color.

And of course, optimally, the TERM would be set back to its initial value after the ssh.

Is there a way to achieve this?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绝不放开 2024-11-24 07:23:18

通常可以通过

alias sshx='TERM=xterm ssh -X 123.45.67.89'

不导出任何内容来解决。在其他情况下,您可能必须创建一个函数。

It is normally solved by

alias sshx='TERM=xterm ssh -X 123.45.67.89'

without exporting anything. In other case you will probably have to create a function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文