Команда ls
имеет дело с именами файлов , которые записываются в каталог структур данных. Таким образом, он не заботится о самом файле, в том числе о «типе» файла.
Команда, которая больше подходит для работы с реальными файлами , а не только с их именами,find
. У него есть опция, которая напрямую отвечает на ваш вопрос о том, как фильтровать список по типу файла.
Это дает список текущего каталога, похожего на ls -l
:
find . -maxdepth 1 -ls
По умолчанию, find
список каталогов рекурсивно, что отключается ограничением глубины поиска до 1.
Вы можете опустить .
, но я включил его, чтобы показать, что каталоги должны быть перечислены перед опциями.
С помощью -type
вы можете фильтровать по типу файла, который выражается как f
или d
для простых файлов или каталогов:
find . -maxdepth 1 -type d -ls
Существуют и другие значения фильтра -type
, особенно l
для символических ссылок.
Обратите внимание, что с символическими ссылками есть сложность :
в этом случае существует два типа файла: с l
указанием символической ссылки и чем-то вроде f
, с указанием типа файла, с которым связан. Есть варианты, чтобы указать, как справиться с этим, так что вы можете выбрать.
От 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)
и имеет отношение к обработке символических ссылок:
-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.
и
-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. [...]