Add free-ports script, Docker aliases, and Bun env

Add free-ports.sh script and a corresponding alias in .bash_aliases.
Introduce docker-clean and docker-update aliases for Docker maintenance.

Export BUN_INSTALL and prepend its bin directory to PATH in .profile.
This commit is contained in:
2026-06-11 15:22:01 +02:00
parent ee8a4660f8
commit dc44eb6d62
3 changed files with 86 additions and 1 deletions
+4
View File
@@ -39,4 +39,8 @@ if [ -n "$BASH_VERSION" ] && [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
export PATH