You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
TOOL="/usr/bin/${0##*/}"
|
|
|
|
set -e
|
|
if [ $# -ge 2 ]; then
|
|
if [ "x-C" = "x$1" ]; then
|
|
cd "$2"
|
|
shift 2
|
|
fi
|
|
fi
|
|
exec $TOOL "$@"
|