Skip to content

Instantly share code, notes, and snippets.

@mizoru
Last active September 6, 2023 14:51
Show Gist options
  • Save mizoru/e687083a95277af4681be8d428b6f018 to your computer and use it in GitHub Desktop.
Save mizoru/e687083a95277af4681be8d428b6f018 to your computer and use it in GitHub Desktop.
Remove the WSL Zone.Identifier files
cd ~ && find . -name "*:Zone.Identifier" -type f -delete && cd - > /dev/null
@mizoru
Copy link
Author

mizoru commented Sep 6, 2023

cat >> ~/.bash_aliases
alias rmzone='cd ~ && find . -name "*:Zone.Identifier" -type f -delete && cd - > /dev/null'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment