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. |