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.
gentoo-overlay/app-misc/editor-wrapper/files/editor-wrapper-4.sh

18 lines
402 B

#!/bin/sh
# Copyright 2009-2011 Gentoo Authors
# Distributed under the terms of the MIT/X11 license
# Wrapper script, executes ${@VAR@} with arguments $@
if [ -z "${@VAR@}" ]; then
# Try to get @VAR@ from system profile
@VAR@=$(. /etc/profile >/dev/null 2>&1; echo "${@VAR@}")
fi
if [ -z "${@VAR@}" ]; then
echo "$0: The @VAR@ variable must be set" >&2
exit 1
fi
exec ${@VAR@} "$@"