mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-20 20:40:08 -08:00
22 lines
616 B
Bash
22 lines
616 B
Bash
#!/bin/bash
|
|
# info: calling myVesta PHP functions
|
|
# options: FUNCTION
|
|
#
|
|
# The function is calling myVesta or standard PHP functions directly from bash
|
|
|
|
#----------------------------------------------------------#
|
|
# Action #
|
|
#----------------------------------------------------------#
|
|
|
|
|
|
if [ "$1" == "--stdin" ] && [ -p /dev/stdin ]; then
|
|
STDIN=$(cat -)
|
|
if [ ! -z "$STDIN" ]; then
|
|
echo "$STDIN" | php /usr/local/vesta/func/bash-to-php-interpreter.php "$@"
|
|
exit $?
|
|
fi
|
|
fi
|
|
|
|
php /usr/local/vesta/func/bash-to-php-interpreter.php "$@"
|
|
exit $?
|