Last active
December 23, 2015 16:09
-
-
Save webevt/6659823 to your computer and use it in GitHub Desktop.
Run a one-time standalone Google Chrome instance: creates a temporary user-directory in /tmp/ and run Google Chrome from it. User data directory will be deleted when the Chrome is closed.
This file contains 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
chromeDataDir="/tmp/"`tr -dc \"[:alpha:]\" < /dev/urandom | head -c 8` && echo "Started Google Chrome from "$chromeDataDir && google-chrome --user-data-dir=$chromeDataDir && rm -r $chromeDataDir |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment