Find files and folders with spaces
Notes
| 2024-06-27
(updated 2025-10-25)
| 1 min read
#bash
#find
#powershell
On Linux/Unix/MacOS:
find . | grep " "
On Windows:
Get-ChildItem -Path "." -Recurse -Filter "* *" | Format-Table FullName