在我的情况下,有可能获得像abb_Timestamp.csv或ABC_TIMESTAMP.CSV这样的文件。我正在使用ls -l | grep ABC* | wc -l
。无论如何,我都想要文件数。即使我收到CAPITAL Letter中的文件,我也应该得到Count,即使我收到小写字母,我也应该得到unix中的计数。请建议。
答案 0 :(得分:6)
解析ls
的输出被视为bad practice。您可以使用find
:
find . -iname 'ABC*' | wc -l
man find
:
-iname pattern
Like -name, but the match is case insensitive. For example, the
patterns `fo*' and `F??' match the file names `Foo', `FOO',
`foo', `fOo', etc. In these patterns, unlike filename expan‐
sion by the shell, an initial '.' can be matched by `*'. That
is, find -name *bar will match the file `.foobar'. Please note
that you should quote patterns as a matter of course, otherwise
the shell will expand any wildcard characters in them.
作为评论中的 Johnsyweb 注释,find
默认会递归到子目录中。为避免这种情况,您可以提供-maxdepth 1
:
-maxdepth levels
Descend at most levels (a non-negative integer) levels of direc‐
tories below the command line arguments. -maxdepth 0
means only apply the tests and actions to the command line
arguments.
答案 1 :(得分:0)
man grep:
$ echo "FOO" | grep foo
$ echo "FOO" | grep -i foo
FOO
$ echo "FOO" | grep -c -i foo
1
答案 2 :(得分:0)
使用awk。 使用csv / CSV搜索所有文件并使用一个awk计算命中数。
ls -l | awk 'tolower($9)~"csv" {a++} END {print a}'