Skip to content

Instantly share code, notes, and snippets.

@imgnx
Created July 27, 2025 07:37
Show Gist options
  • Select an option

  • Save imgnx/af1342f9d0e8d3bebc1c27875b624d3e to your computer and use it in GitHub Desktop.

Select an option

Save imgnx/af1342f9d0e8d3bebc1c27875b624d3e to your computer and use it in GitHub Desktop.
Clean up src/ director(y/ies)
#!/bin/bash
#shellcheck shell=bash
find $HOME/src -type d \( -name "target" -or -name "node_modules" -or -name "venv" -or -name "dist" -or -name "build" -or -name ".idea" -or -name ".vscode" \) -or -name "*.log" -or -name "*.bak" -or -name "*.swp" -or -name "*~" -or -name "debug" -or -name "debug_log"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment