Computer Science, asked by Cody47, 3 days ago

Write a script that counts the number of files ending in .sh in the current directory.

Answers

Answered by tanishachhabra59
0

Answer:

script

that counts the number of files

Answered by pshardul2007
0

Answer:

To include hidden files (except . and ..) and avoid problems with newline characters, the canonical way is:

find . ! -name . -prune -print | grep -c /

Similar questions