#!/bin/bash
# Launches Chrome with the --no-first-run flag.
# Usage:
#   launch_chrome.sh google.com
# Copyright 2011 Google Inc. All Rights Reserved.
# Author: rowillia@google.com (Roy Williams)
/usr/bin/google-chrome --no-first-run $1
