Skip to content

Instantly share code, notes, and snippets.

@t1anchen
Created August 27, 2024 05:50
Show Gist options
  • Select an option

  • Save t1anchen/e9230076f082ce7f5179370b7a148b3a to your computer and use it in GitHub Desktop.

Select an option

Save t1anchen/e9230076f082ce7f5179370b7a148b3a to your computer and use it in GitHub Desktop.
Delete `.DS_Store` under win11 with `fd` and powershell
# Reference
#
# - https://github.com/sharkdp/fd/issues/376
# - https://github.com/sharkdp/fd/issues/310
fd --type f -I -H --regex '.*DS_Store' | ForEach-Object { Remove-Item -Force $_ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment