2013-02-11 16 views
5

Khi tôi làm "ls", nó liệt kê các tệp và thư mục có mã hóa màu. Tôi không thể tìm thấy bản dịch mã hóa này ở bất cứ đâu. Tôi biết một số là các tập tin và một số là các thư mục, nhưng tôi có ba màu ở đây.Các kết quả được mã hóa bằng màu nào từ "ls" có nghĩa là trong Thiết bị đầu cuối của Mac?

Bất kỳ ai biết bản dịch ở đâu? Có nhiều bài viết nói cách kích hoạt mã hóa, nhưng bây giờ là nơi để xem các định nghĩa.

Trả lời

9

Nhìn vào man ls và tìm kiếm các chuỗi LSCOLORS nếu bạn muốn tìm hiểu làm thế nào để thay đổi chúng, nhưng đây là những điều cơ bản:

LSCOLORS  The value of this variable describes what color to use 
       for which attribute when colors are enabled with 
       CLICOLOR. This string is a concatenation of pairs of the 
       format fb, where f is the foreground color and b is the 
       background color. 

       The color designators are as follows: 

         a  black 
         b  red 
         c  green 
         d  brown 
         e  blue 
         f  magenta 
         g  cyan 
         h  light grey 
         A  bold black, usually shows up as dark grey 
         B  bold red 
         C  bold green 
         D  bold brown, usually shows up as yellow 
         E  bold blue 
         F  bold magenta 
         G  bold cyan 
         H  bold light grey; looks like bright white 
         x  default foreground or background 

       Note that the above are standard ANSI colors. The actual 
       display may differ depending on the color capabilities of 
       the terminal in use. 

       The order of the attributes are as follows: 

         1. directory 
         2. symbolic link 
         3. socket 
         4. pipe 
         5. executable 
         6. block special 
         7. character special 
         8. executable with setuid bit set 
         9. executable with setgid bit set 
         10. directory writable to others, with sticky bit 
         11. directory writable to others, without sticky 
          bit 

       The default is "exfxcxdxbxegedabagacad", i.e. blue fore- 
       ground and default background for regular directories, 
       black foreground and red background for setuid executa- 
       bles, etc. 

Vì vậy, mặc định là:

directories: blue on default background 
symlink: magenta on default background 
socket: green on default background 
pipe: brown on default background 

và do đó trên

+0

cảm ơn David! Bạn có biết chính xác nếu có lệnh để xác định loại mục được trả về trong ls không? –

+0

nếu bạn có nghĩa là trong danh sách thư mục, tùy chọn -F cho ls là những gì bạn muốn. Nếu bạn muốn kiểm tra từng tệp để xem nó là gì, lệnh 'tệp' sẽ nhận dạng nó. Sử dụng công tắc '-h' trên tệp nếu bạn không muốn nó chuyển thành liên kết tượng trưng. –

Các vấn đề liên quan