diff options
author | Jim Meyering <jim@meyering.net> | 2005-09-05 17:11:39 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-09-05 17:11:39 +0000 |
commit | bd30058179f47fa232a8ef6d8d4b451374f89893 (patch) | |
tree | e3d3bec381795a517ff3e2a8db5bdfc89bf47b24 | |
parent | 200572872f4e96e7c70db4ed7c11b3efa151eb63 (diff) | |
download | coreutils-bd30058179f47fa232a8ef6d8d4b451374f89893.tar.xz |
Colorize set-user-ID and set-group-ID files and sticky,
other-writable, and sticky-and-other-writable directories.
Document the default colors for the new strings.
From Mike Frysinger, based on a patch from Fedora.
-rw-r--r-- | src/dircolors.hin | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dircolors.hin b/src/dircolors.hin index 8ee8c69d6..18498d5a9 100644 --- a/src/dircolors.hin +++ b/src/dircolors.hin @@ -51,6 +51,11 @@ DOOR 01;35 # door BLK 40;33;01 # block device driver CHR 40;33;01 # character device driver ORPHAN 40;31;01 # symlink to nonexistent file +SETUID 37;41 # file that is setuid (u+s) +SETGID 30;43 # file that is setgid (g+s) +STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w) +OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky +STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable # This is for files with execute permission: EXEC 01;32 |