Skip to content

Instantly share code, notes, and snippets.

@cs50victor
Last active September 26, 2025 01:37
Show Gist options
  • Select an option

  • Save cs50victor/ba56217ebb770ef32452c46554c5d750 to your computer and use it in GitHub Desktop.

Select an option

Save cs50victor/ba56217ebb770ef32452c46554c5d750 to your computer and use it in GitHub Desktop.
handy one-liner to free up space for typescript/rust/python developers
# handy one-liner to free up space for typescript/rust/python developers
cd ~/dev && for dir in */; do rm -rf "${dir}node_modules" "${dir}target" "${dir}.venv" "${dir}.next" 2>/dev/null; done
@cs50victor
Copy link
Author

cs50victor commented Apr 27, 2025

replace ~/dev with ~/<name_of_your_code_dir>

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