From a783489fc579fd22783069ae20d016ee4247ca14 Mon Sep 17 00:00:00 2001 From: Joshua <1041261+JoshuaACasey@users.noreply.github.com> Date: Tue, 1 Sep 2026 16:23:31 -0500 Subject: [PATCH] Add alias to delete Zone.Identifier files in WSL --- .bashrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.bashrc b/.bashrc index c2a2883..d943a77 100644 --- a/.bashrc +++ b/.bashrc @@ -389,6 +389,9 @@ docker-clean() { # alias to fix ~/.ssh permissions alias sshperms='cd ~ && chmod 600 ~/.ssh/* && chmod 700 ~/.ssh && chmod 644 ~/.ssh/*.pub' +# delete those pesky Zone.Identifier files that happen with WSL +alias unzone='find . -name "*:Zone.Identifier" -type f -delete' + ####################################################### # SPECIAL FUNCTIONS #######################################################