From 97d4fde8648cc500e884f89683b46a327a25e062 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Thu, 19 Feb 2009 17:51:30 -0500 Subject: [PATCH] Add phpv-cgi script. Signed-off-by: Edward Z. Yang --- bin/phpv-cgi | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 bin/phpv-cgi diff --git a/bin/phpv-cgi b/bin/phpv-cgi new file mode 100755 index 0000000..fdb7a11 --- /dev/null +++ b/bin/phpv-cgi @@ -0,0 +1,9 @@ +#!/bin/bash +VERSION="$1" +if [ "$VERSION" = "" ] +then + echo "Usage: phpv-cgi version ..." + exit +fi +shift 1 +"/home/ezyang/Dev/php/versions/$VERSION/bin/php-cgi" $@ -- 2.11.4.GIT