Linux ls显示黄色背景颜色的文件

时间:2017-08-25 12:11:30

标签: linux file colors ls

这个黄色(Ubuntu上的橙色)背景颜色在ls中意味着什么?

enter image description here

neoexpert@sonderbyte:/srv/thing$ ls -l
total 32
drwxrwsr-x 2 root developers 4096 Aug 25 12:30 branches
-rw-rw-r-- 1 root developers   66 Aug 25 12:30 config
-rw-rw-r-- 1 root developers   73 Aug 25 12:30 description
-rw-rw-r-- 1 root developers   23 Aug 25 12:30 HEAD
drwxrwsr-x 2 root developers 4096 Aug 25 14:00 hooks
drwxrwsr-x 2 root developers 4096 Aug 25 12:30 info
drwxrwsr-x 4 root developers 4096 Aug 25 12:30 objects
drwxrwsr-x 4 root developers 4096 Aug 25 12:30 refs
neoexpert@sonderbyte:/srv/thing$ 

1 个答案:

答案 0 :(得分:0)

试试ls -l找出答案(这比在这里要求的要快)。

阅读ls(1)并使用LS_COLORS

查看您的echo $LS_COLORS环境变量

(看起来你在普通文件上有可疑的sticky bit;另请参阅this;还可以在奇怪的文件上尝试stat(1)。)

不要在文件上使用粘性位(仅限目录)。

BTW,我怀疑为git设置粘滞位是错误的。