How to change the color of different files in ls

Joe Theman

So I know that there is a way to change the color of text for directories, regular files, bash scripts, etc. Is there a way to change the color to the file based on the _file extension_?

Example:

$ ls -l
foo.txt  [is red] 
foo.text  [is blue] 
foo.secret  [is green] 
foo.txt  [is red]
Stephen Kitt

Yes, using the LS_COLORS variable (assuming GNU ls). The easiest way to manipulate that is to use dircolors:

dircolors --print-database > dircolors.txt

will dump the current settings to dircolors.txt, which you can then edit; once you've added your settings,

eval $(dircolors dircolors.txt)

will update LS_COLORS and export it. You should add that to your shell startup script.

To apply the example settings you give, the entries to add to dircolors.txt would be

.txt 00;31
.text 00;34
.secret 00;32

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

I used a for loop to draw different curves. But how can I change every line to a different color?

분류에서Dev

How to change button color

분류에서Dev

How to change the color of *just* the header?

분류에서Dev

How to change color of image in JavaFX

분류에서Dev

How to change color of CCDrawNode component?

분류에서Dev

How to use "dir" to show hidden files that "ls" shows just fine?

분류에서Dev

how to read files listed by ls command one by one in bash?

분류에서Dev

How to rename files with different extensions

분류에서Dev

Conditional change of font color based on value in a different cell

분류에서Dev

script-tutorials.com Colorwheel change color of different div

분류에서Dev

How to dynamically change SVG fill color?

분류에서Dev

How to change default selection color of a ListView?

분류에서Dev

How to change the color of the text of a label in Xcode

분류에서Dev

How to change a font/background color in transparent windows?

분류에서Dev

How to find and change color of specific word in string

분류에서Dev

How to change the color of a senders parent on event?

분류에서Dev

How can i change hyperlink color with JQuery?

분류에서Dev

How to Change Font Color based on Conditional?

분류에서Dev

How to change the color of the text in below code?

분류에서Dev

How to change the Foreground Color of ListView Selected Item

분류에서Dev

How to change the color of a touched region in ImageView?

분류에서Dev

How to change tint color of a rightCalloutAccessory on Mapbox?

분류에서Dev

How to change results to display a different name SQL

분류에서Dev

How to change paths of multiple hyperlink files in excel?

분류에서Dev

How to change file association for .iso files?

분류에서Dev

How to change the directory to program files using Powershell?

분류에서Dev

how to use different color theme in one css file

분류에서Dev

Why pixels color are different before and after encoding? , How to set the same?

분류에서Dev

How can i show the area in a different color in Google Map

Related 관련 기사

  1. 1

    I used a for loop to draw different curves. But how can I change every line to a different color?

  2. 2

    How to change button color

  3. 3

    How to change the color of *just* the header?

  4. 4

    How to change color of image in JavaFX

  5. 5

    How to change color of CCDrawNode component?

  6. 6

    How to use "dir" to show hidden files that "ls" shows just fine?

  7. 7

    how to read files listed by ls command one by one in bash?

  8. 8

    How to rename files with different extensions

  9. 9

    Conditional change of font color based on value in a different cell

  10. 10

    script-tutorials.com Colorwheel change color of different div

  11. 11

    How to dynamically change SVG fill color?

  12. 12

    How to change default selection color of a ListView?

  13. 13

    How to change the color of the text of a label in Xcode

  14. 14

    How to change a font/background color in transparent windows?

  15. 15

    How to find and change color of specific word in string

  16. 16

    How to change the color of a senders parent on event?

  17. 17

    How can i change hyperlink color with JQuery?

  18. 18

    How to Change Font Color based on Conditional?

  19. 19

    How to change the color of the text in below code?

  20. 20

    How to change the Foreground Color of ListView Selected Item

  21. 21

    How to change the color of a touched region in ImageView?

  22. 22

    How to change tint color of a rightCalloutAccessory on Mapbox?

  23. 23

    How to change results to display a different name SQL

  24. 24

    How to change paths of multiple hyperlink files in excel?

  25. 25

    How to change file association for .iso files?

  26. 26

    How to change the directory to program files using Powershell?

  27. 27

    how to use different color theme in one css file

  28. 28

    Why pixels color are different before and after encoding? , How to set the same?

  29. 29

    How can i show the area in a different color in Google Map

뜨겁다태그

보관