Skip Navigation

Posts
27
Comments
224
Joined
2 yr. ago

  • A single person is technically a "family".

  • Been a proud Firefox user for a long time. Never switched to Chrome, don't plan to.

  • Real talk I’ve been using this I’ve mashed together:

     
        
    update_brew() {
        bold=$(tput bold);
        normal=$(tput sgr0);
        brew --version &&
        echo "${bold} > brew update${normal}" &&
        brew update &&
        echo "${bold} > brew upgrade${normal}" &&
        brew upgrade &&
        echo "${bold} > brew autoremove${normal}" &&
        brew autoremove &&
        echo "${bold} > brew cleanup${normal}" &&
        brew cleanup &&
        echo "${bold} > brew doctor${normal}" &&
        brew doctor;
    }