Last active
September 26, 2025 01:37
-
-
Save cs50victor/ba56217ebb770ef32452c46554c5d750 to your computer and use it in GitHub Desktop.
handy one-liner to free up space for typescript/rust/python developers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
replace
~/devwith~/<name_of_your_code_dir>