#!/bin/bash
set -e
cd / # something not writeable, to catch misdirected writes
while [[ ${1:0:1} == "-" ]]; do shift; done
userhost="$1"; shift
exec sh -c "$*"
