如何在命令行中查找文件名以空格开头的文件

此简单的 bash 脚本将递归查找当前目录中以空格开头的文件。

find_files_starting_space.sh
find . -name " *"

Check out similar posts by category: Linux