Skip to content

Instantly share code, notes, and snippets.

@solrevdev
Created November 12, 2022 08:34
Show Gist options
  • Select an option

  • Save solrevdev/21eab06919c956b8448dad7fffcff698 to your computer and use it in GitHub Desktop.

Select an option

Save solrevdev/21eab06919c956b8448dad7fffcff698 to your computer and use it in GitHub Desktop.
Shell script to delete bin and obj folders
#!/usr/bin/env bash
echo "Delete bin and obj folders in this folder and it's sub folders"
find . -iname "bin" -print0 | xargs -0 rm -rf
find . -iname "obj" -print0 | xargs -0 rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment