Como encontrar os campos em ls -l mean [closed]

7

Minha pergunta não é o que cada campo significa, minha pergunta é como determinar o que cada campo significa.

A página man simplesmente declara -l usa um formato de listagem longo sem descrever o que o longo formato de listagem implica.

    
por monzie 12.07.2018 / 14:49

3 respostas

12

No final da página de manual para a implementação do GNU Coreutils de ls (como encontrado nos sistemas Linux e alguns outros Unices):

SEE ALSO
       Full documentation at: <http://www.gnu.org/software/coreutils/ls>
       or available locally via: info '(coreutils) ls invocation'

Seguindo o link para o manual on-line, vê-se uma seção intitulada " Que informação é listada ", que entre outras coisas descreve o formato de saída longo em maior detalhe.

Na maioria dos outros sistemas, o manual ls é independente e descreve o formato longo. Por exemplo o manual do OpenBSD ls (1) .

Qualquer que seja o Unix em que você esteja , o manual ls conterá as informações necessárias, ou fará referência ao outro manual relevante ou documento on-line que contém os detalhes. Caso contrário, você deve relatar isso como um bug de documentação.

Pesquisando o que uma opção para um comando faz é perigoso, já que muitos comandos têm extensões não-padrão que podem ser implementadas de maneira diferente em Unidades diferentes, ou até mesmo de forma diferente dependendo da versão da ferramenta que está instalada. O que você gostaria de fazer é ler o manual em seu sistema.

Se o manual não está descrevendo exatamente o que uma opção faz, ou o que é um formato, explicitamente ou por referência a alguma outra documentação, então, como eu disse acima, isso seria considerado um bug de documentação.

    
por 12.07.2018 / 14:57
2

Considere o uso do comando info , como em info ls . Muitos comandos têm documentação muito mais detalhada aqui do que nas man pages. Nesse caso, você obterá uma versão offline da mesma documentação no link da resposta do @Kusalana. Você pode usar info -k <search term> para pesquisar as páginas de informações.

Outra maneira de encontrar ajuda é o comando apropos <search term> , que pesquisa os títulos e as descrições de páginas do manual para ajudá-lo a encontrar o que está procurando. Isso ajuda você a encontrar todas as seções de uma página man, que no caso de ls no meu sistema, são seções 1 (o padrão) e 1p. man 1p ls tem informações sobre o formato da saída.

    
por 12.07.2018 / 16:04
2

Minha página man ls me fornece informações completas sobre o formato longo. Eu acho que isso deve ser o mesmo em todos os sistemas. Role para baixo, talvez você encontre todas as informações necessárias

The Long Format

If the -l option is given, the following information is displayed for each file: file mode, number of links, owner name, group name, number of bytes in the file, abbreviated month, day-of-month file was last modified, hour file last modified, minute file last modified, and the pathname. In addition, for each directory whose contents are displayed, the total number of 512-byte blocks used by the files in the directory is displayed on a line by itself, immediately before the information for the files in the directory. If the file or directory has extended attributes, the permissions field printed by the -l option is followed by a '@' character. Otherwise, if the file or directory has extended security information (such as an access control list), the permissions field printed by the -l option is followed by a '+' character.

If the modification time of the file is more than 6 months in the past or future, then the year of the last modification is displayed in place of the hour and minute fields.

If the owner or group names are not a known user or group name, or the -n option is given, the numeric ID's are displayed.

If the file is a character special or block special file, the major and minor device numbers for the file are displayed in the size field. If the file is a symbolic link, the pathname of the linked-to file is preceded by '->'.

The file mode printed under the -l option consists of the entry type, owner permissions, and group permissions. The entry type character describes the type of file, as follows:

  • b Block special file.
  • c Character special file.
  • d Directory.
  • l Symbolic link.
  • s Socket link.
  • p FIFO.
  • - Regular file.

The next three fields are three characters each: owner permissions, group permissions, and other permissions. Each field has three character positions:

  1. If r, the file is readable; if -, it is not readable.
  2. If w, the file is writable; if -, it is not writable.
  3. The first of the following that applies:

    • S If in the owner permissions, the file is not executable and set-user-ID mode is set. If in the group permissions, the file is not executable and set-group-ID mode is set.

    • s If in the owner permissions, the file is executable and set-user-ID mode is set. If in the group permissions, the file is executable and setgroup-ID mode is set.

    • x The file is executable or the directory is searchable.

    • - The file is neither readable, writable, executable, nor set-user-ID nor set-group-ID mode, nor sticky. (See below.)

    These next two apply only to the third character in the last group (other permissions).

    • T The sticky bit is set (mode 1000), but not execute or search permission. (See chmod(1) or sticky(8).)

    • t The sticky bit is set (mode 1000), and is searchable or executable. (See chmod(1) or sticky(8).)

    
por 12.07.2018 / 14:53

Tags