Skip to content

Instantly share code, notes, and snippets.

@nwinant
Last active August 29, 2015 14:08
Show Gist options
  • Save nwinant/9c226c1805a931b66d2b to your computer and use it in GitHub Desktop.
Save nwinant/9c226c1805a931b66d2b to your computer and use it in GitHub Desktop.
Launch parallel Chrome instance w/ different profile, suppressing verbosity (OS X)
# Launch parallel Chrome instance w/ different profile, suppressing verbosity (OS X)
#
# See also:
# http://www.chromium.org/user-experience/user-data-directory
# http://peter.sh/experiments/chromium-command-line-switches/
USER_DATA_DIR=~/some-chrome-alt-profile-dir
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --user-data-dir=${USER_DATA_DIR} > /dev/null 2>&1 &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment