GNU/Linux >> Linux Esercitazione >  >> Linux

Una semplice spiegazione del comando NAMEI in Linux

Ad esempio:

$ namei test/test1.txt

Uscita:

f:il nome del percorso

d:directory

-:il nome del file

Breve descrizione

DESCRIZIONE in alto

       <strong>namei </strong>interprets its arguments as pathnames to any type of Unix
       file (symlinks, files, directories, and so forth). <strong>namei </strong>then
       follows each pathname until an endpoint is found (a file, a
       directory, a device node, etc). If it finds a symbolic link, it
       shows the link, and starts following it, indenting the output to
       show the context.

       This program is useful for finding "too many levels of symbolic
       links" problems.

       For each line of output, <strong>namei </strong>uses the following characters to
       identify the file type found:

              f: = the pathname currently being resolved
               d = directory
               l = symbolic link (both the link and its contents are output)
               s = socket
               b = block device
               c = character device
               p = FIFO (named pipe)
               - = regular file
               ? = an error of some kind

       <strong>namei </strong>prints an informative message when the maximum number of
       symbolic links this system can have has been exceeded.
Code language: HTML, XML (xml)

Utilizzo del comando namei

1. Allinea al margine sinistro (usando l'opzione -v)

$ namei -v test/test1.txt

Uscita:

2. Mostra proprietario e gruppo (usando l'opzione -o)

$ namei -o test/test1.txt

Uscita:

Ciò dimostra che questa cartella e questo file sono entrambi di proprietà di Ubuntu.

3. Mostra la lista lunga (usando l'opzione -l)

$ namei -l test/test1.txt

Uscita:

Con questa opzione, mostrerà più privilegi del proprietario.

Se vuoi mostrare solo i privilegi del proprietario, usiamo l'opzione -m:

$ namei -m test/test1.txt

Uscita:

Conclusione

Ti abbiamo appena insegnato a usare il comando namei in Linux.

Un altro articolo interessante potrebbe essere:Un modo semplice per installare FortiClient VPN


Linux
  1. Come usare il comando Linux grep

  2. 8 suggerimenti per la riga di comando di Linux

  3. Come usare il comando cronologia in Linux

  4. Padroneggia il comando ls di Linux

  5. Introduzione al comando alternatives in Linux

Il comando timer in Linux

Il comando curl di Linux

Esempi essenziali del comando ps in Linux

Qual è il comando kill in Linux?

Comprendere il comando dell'ora in Linux

Uso del comando grep in Linux