/src/bin/phplemon
https://bitbucket.org/mazzarelli/trekel · Shell · 34 lines · 6 code · 4 blank · 24 comment · 0 complexity · ca055289ec280929bb448117e8267bff MD5 · raw file
- #!/bin/sh
- # Copyright 2010 Joey Mazzarelli. All rights reserved.
- #
- # Redistribution and use in source, with or without modification, is
- # permitted provided that the following condition is met:
- #
- # 1. Redistributions of source code must retain the above copyright
- # notice, this list of conditions and the following disclaimer.
- #
- # THIS SOFTWARE IS PROVIDED BY JOEY MAZZARELLI ``AS IS'' AND ANY EXPRESS
- # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- # DISCLAIMED. IN NO EVENT SHALL JOEY MAZZARELLI OR CONTRIBUTORS BE LIABLE
- # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- # THE POSSIBILITY OF SUCH DAMAGE.
- #
- # The views and conclusions contained in the software and documentation
- # are those of the authors and should not be interpreted as representing
- # official policies, either expressed or implied, of Joey Mazzarelli.
- SELF=$(readlink -f $0)
- CURR=${SELF%/*}
- ROOT=${CURR%%/src/bin*}
- INCDIR="${ROOT}/src/lib/"
- INCARG="-d include_path=${INCDIR}"
- exec php -C -q $INCARG -d open_basedir="" -d safe_mode=0 -d register_argc_argv="On" -d auto_prepend_file="" -d auto_append_file="" $INCDIR/PHP/ParserGenerator/cli.php "$@"