zulip/scripts/lib/cd_exec

9 lines
101 B
Plaintext
Raw Normal View History

2017-05-22 21:01:58 +02:00
#!/usr/bin/env bash
set -e
# cd into $1 and then exec the rest of the args
cd "$1"
shift
exec "$@"