8 lines
174 B
Bash
Executable File
8 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
#echo ${BASH_ARGV[*]}
|
|
docker exec test-php php \
|
|
-dxdebug.mode=debug \
|
|
-dxdebug.start_with_request=1 \
|
|
`basename ${BASH_ARGV[0]}` \
|
|
"${@:1:$#-1}"
|