按文件大小对 grep 的输出进行排序?(bash)

按文件大小对 grep 的输出进行排序?(bash)

我想在某个目录中 grep 某个字符串。然后我想按大小对文件进行排序(字节数也可以)。这些文件是 .php 文件,但我认为其他非 php 文件不会有我要查找的字符串。我该怎么做?

我得到了 grep 部分:

grep -rl "foostring" ~/myfolder

答案1

文件按大小递减顺序排列:

matching_files_by_size() {
    local matching_paths path
    mapfile -d '' -t matching_paths < <(grep --files-with-matches --null --recursive "$@")
    for path in "${matching_paths[@]}"
    do
        printf '%s\t%q\n' "$(du --bytes -- "$path" | cut --fields=1)" "$path"
    done | sort --key=1 --numeric-sort --reverse | cut --fields=2
}

通过 shell 转义输出来支持任何路径。

先决条件:GNU sed/ grep,Bash 4。

相关内容