在zsh中测试LS_COLORS
几年前我发现了一个有趣的代码片段,该片段根据在中设置的颜色以相应的颜色打印每种文件类型LS_COLORS。不幸的是,我不再记得链接了。 这是有test_colors.sh问题的代码段 eval $(echo "no:global default;fi:normal file;di:directory;ln:symbolic link;pi:named pipe;so:socket;do:door;bd:block device;cd:character device;or:orphan symlink;mi:missing file;su:set uid;sg:set gid;tw:sticky other writable;ow:other w\ ritable;st:sticky;ex:executable;"|sed -e 's/:/="/g; s/\;/"\n/g') { IFS=: for i in $LS_COLORS do echo -e "\e[${i#*=}m$( x=${i%=*}; [ "${!x}" ] && echo "${!x}" || echo "$x" )\e[m" done } 该代码段在中效果不错bash,但在中效果不佳,zsh我也不知道为什么。当我运行它时,zsh出现以下错误: > sh .test_colors.sh .eval_colors:1: …