Il comando ha a che ls
fare con i nomi dei file , che sono registrati nelle strutture di dati della directory. Quindi non importa davvero del file stesso, incluso il "tipo" di un file.
Un comando che è più adatto a lavorare su file effettivi , non solo sui nomi, lo è find
. Ha un'opzione che risponde direttamente alla tua domanda su come filtrare l'elenco in base al tipo di file.
Questo fornisce un elenco della directory corrente simile a ls -l
:
find . -maxdepth 1 -ls
Per impostazione predefinita, find
elenca le directory in modo ricorsivo, che è disabilitato limitando la profondità di ricerca a 1.
È possibile tralasciare la .
, ma l'ho inclusa per mostrare che le directory devono essere elencate prima delle opzioni.
Con -type
, puoi filtrare per tipo di file, che è espresso come f
o d
per file o directory semplici:
find . -maxdepth 1 -type d -ls
Esistono altri valori di filtro per -type
, in particolare l
per i collegamenti simbolici.
Nota che c'è una complicazione con i collegamenti simbolici :
in questo caso ci sono due tipi di file l
:, che indica un collegamento simbolico e qualcosa di simile f
, che indica il tipo di file collegato. Ci sono opzioni per specificare come gestirlo, quindi puoi scegliere.
Da man find
:
-type c
File is of type c:
b block (buffered) special
c character (unbuffered) special
d directory
p named pipe (FIFO)
f regular file
l symbolic link; this is never true if the -L option
or the -follow option is in effect, unless the sym‐
bolic link is broken. If you want to search for
symbolic links when -L is in effect, use -xtype.
s socket
D door (Solaris)
e rilevanti per la gestione dei collegamenti simbolici:
-xtype c
The same as -type unless the file is a symbolic link. For
symbolic links: if the -H or -P option was specified, true
if the file is a link to a file of type c; if the -L option
has been given, true if c is `l'. In other words, for sym‐
bolic links, -xtype checks the type of the file that -type
does not check.
e
-P Never follow symbolic links. This is the default behav‐
iour. When find examines or prints information a file, and
the file is a symbolic link, the information used shall be
taken from the properties of the symbolic link itself.
-L Follow symbolic links. When find examines or prints infor‐
mation about files, the information used shall be taken
from the properties of the file to which the link points,
not from the link itself (unless it is a broken symbolic
link or find is unable to examine the file to which the
link points). Use of this option implies -noleaf. If you
later use the -P option, -noleaf will still be in effect.
If -L is in effect and find discovers a symbolic link to a
subdirectory during its search, the subdirectory pointed to
by the symbolic link will be searched.
When the -L option is in effect, the -type predicate will
always match against the type of the file that a symbolic
link points to rather than the link itself (unless the sym‐
bolic link is broken). Using -L causes the -lname and
-ilname predicates always to return false.
-H Do not follow symbolic links, except while processing the
command line arguments. [...]