Execute the following command
find . -name *.sh
Error finding: paths must precede expression
Solution: when searching multiple files, you need to add single quotation marks
to
find . -name '*.sh'
or
find . -name \*.sh
Execute the following command
find . -name *.sh
Error finding: paths must precede expression
Solution: when searching multiple files, you need to add single quotation marks
to
find . -name '*.sh'
or
find . -name \*.sh