#!/bin/bash -eu
# chrome_profile - open a chrome profile

profile_name=$1
shift
profile_key=`chrome_profile_key "$profile_name"`
[ -n "$profile_key" ]
google-chrome --profile-directory="$profile_key" "$@"
