How to find files with filename starting with a space on the command line

This simple bash script will recursively find files in the current directory which start with a space.

find_files_starting_space.sh
find . -name " *"

 


Check out similar posts by category: Linux