Skip to content

Instantly share code, notes, and snippets.

@nikomartn
Last active August 13, 2022 11:30
Show Gist options
  • Save nikomartn/d5f91f0585f33ada536aed272ffc1ddf to your computer and use it in GitHub Desktop.
Save nikomartn/d5f91f0585f33ada536aed272ffc1ddf to your computer and use it in GitHub Desktop.
rm_dotnet remove *\bin and *\obj from your heavy projects!
alias rm_dotnet='rm -rf $( find . -type d -regex ".*/\(obj\|bin\)" )'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment