#!/bin/sh # preserve only some variables (like LANG) for some crappy tools. unset $(printenv | grep -v '^\$' | egrep -v '^(HOME|LOGNAME|PATH|SHELL|TERM|USER|LANG)=' | sed -r 's/^([^=]+)=.*$/\1/' | xargs) schroot -c "$(schroot -l | head -1)" -- "$(basename "${0}")" "${@}"