Print a readable summary after running bundle update
- Create the file
~/bundle_update_summary.sh - Add command to your profile
~/.zshrcbundle() { if [[ "$1" == "update" ]]; then shift ~/bundle_update_summary.sh "$@" else command bundle "$@" fi } - Reload shell
source ~/.zshrc