1
jsfaint 2015-01-12 15:52:11 +08:00
没有颜色是你远端的机器的设置问题啊
请自行alias ls="ls --clolor" |
2
fasling OP @jsfaint 远程机器没有问题啊,在windows下用xshell连接好好的。而且,直接ls --color也没有颜色。
|
3
NemoAlex 2015-01-12 16:13:04 +08:00
export CLICOLOR="xterm-color"
export LSCOLORS="gxfxcxdxbxegedabagacad" |
4
lululau 2015-01-12 16:18:00 +08:00
很有可能和 terminal type 有关
echo $TERM |
6
lululau 2015-01-12 20:18:13 +08:00
@fasling 你用 xshell 连接到 remote host, 在 remost host 上执行 echo $TERM,假设输出为 abc, 那么然后在 iTerm2 里执行:
TERM=abc ssh username@remote_host |
7
lululau 2015-01-12 20:28:54 +08:00 1
我记得有的发行版里有类似这样的判断:
if [ "$TERM" = xterm ] then alias ls='ls --color' fi |