#!/bin/sh HERE=`dirname "$0"` profile="$HOME/.config/gwt-chrome" if ! [ -e "$profile" ]; then mkdir -p "$profile" cp -r "$HERE/../chrome-profile"/* "$profile" fi chmod -R u+w "$profile" LD_LIBRARY_PATH="$HERE/../lib/chrome-support" \ "$HERE"/../chrome-linux/chrome \ --auth-server-whitelist="*cern.ch" \ --disable-setuid-sandbox --user-data-dir="$profile" $*