Find files and folders with spaces

2024-06-27 (updated 2025-10-25)
Notes | 1 min read
#bash #find #powershell

On Linux/Unix/MacOS:

find . | grep " "

On Windows:

Get-ChildItem -Path "." -Recurse -Filter "* *" | Format-Table FullName