Last active
January 30, 2026 23:49
-
-
Save ZenBerry/d60b11c9503c365bab7212ac2446e1af to your computer and use it in GitHub Desktop.
info.zenberry simple helper in terminal
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
| # Add this to ~/.zshrc: | |
| function chpwd() { | |
| if [ -f info.zenberry ]; then | |
| printf "\033[1minfo.zenberry:\033[0m %s\n" "$(cat info.zenberry)" | |
| fi | |
| } | |
| # Then reload: source ~/.zshrc | |
| # This will print the contents of info.zenberry every time you cd into a folder that has this file inside. Useful for quickly reminding yourself how to start your app properly etc. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment