Skip to content

Instantly share code, notes, and snippets.

@justinkiner
justinkiner / brew-sync.sh
Last active March 12, 2024 22:03 — forked from jpawlowski/brew-sync.sh
Sync Homebrew installations between Macs via Dropbox
#!/bin/bash
# Sync Homebrew installations between Macs via Dropbox
#
BREW="/usr/local/bin/brew"
SYNCDIR="$HOME/Dropbox/Tools/Homebrew"
# First, update homebrew
$BREW update