Answers for "linux show list of files with certain name"

1

how to list files starting with a in linux

find . -type f -name "abc*"
Posted by: Guest on May-20-2021
1

list number of files in each folder linux

find . -type d -print0 | while read -d '' -r dir; do
    files=("$dir"/*)
    printf "%5d files in directory %s\n" "${#files[@]}" "$dir"
done
Posted by: Guest on June-22-2020

Code answers related to "linux show list of files with certain name"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language