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 . -name " *"
This simple bash script will recursively find files in the current directory which start with a space.
find . -name " *"