O que significa o ponto depois de -rwxr-xr-x na saída ls -l? [duplicado]

10
    

Esta pergunta já tem uma resposta aqui:

    
  •              O que significa o ponto no final de '-rw-r - r--'? Como você define isso com 'chmod'?                                      5 respostas                          
  •     

Qual é o significado do ponto '.' depois do último (o mais certo) 'x' na segunda linha? Esta é a saída de

[igor@localhost ~]$ ls -l /usr/local/bin

-rwxr-xr-x  1 root root  113797 Aug 20 05:30 gpib
-rwxr-xr-x. 1 root root   30283 Jul 16 22:48 ibtest

Não, este não é o único ponto na saída de 'ls -l'. Existem muitos ... mas não em todas as linhas.
(CentOS 6.4 32 bits)

    
por Igor 02.11.2013 / 10:01

1 resposta

3

Se você der uma olhada em info ls What\ information , ele informará

Following the file mode bits is a single character that specifies whether an alternate access method such as an access control list applies to the file. When the character following the file mode bits is a space, there is no alternate access method. When it is a printing character, then there is such a method.

GNU 'ls' uses a '.' character to indicate a file with an SELinux security context, but no other alternate access method.

A file with any other combination of alternate access methods is marked with a '+' character.

    
por 02.11.2013 / 10:05

Tags