mirror of
https://github.com/danog/php.git
synced 2024-11-26 11:55:00 +01:00
10 lines
118 B
Bash
Executable File
10 lines
118 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# first arg is `-f` or `--some-option`
|
|
if [ "${1#-}" != "$1" ]; then
|
|
set -- php "$@"
|
|
fi
|
|
|
|
exec "$@"
|