On Wed, Jun 26, 2024 at 6:27 PM Rainer Jung <rainer.j...@kippdata.de> wrote:
>
> Am 24.06.24 um 19:34 schrieb cove...@apache.org:
> > Author: covener
> > Date: Mon Jun 24 17:34:10 2024
> > New Revision: 1918555
> >
> > URL: http://svn.apache.org/viewvc?rev=1918555&view=rev
> > Log:
> > test for 1918551
> >
> > Added:
> >      httpd/test/framework/trunk/t/htdocs/modules/cgi/action.sh   (with 
> > props)
> > Modified:
> >      httpd/test/framework/trunk/t/modules/actions.t
> >
> > Added: httpd/test/framework/trunk/t/htdocs/modules/cgi/action.sh
> > URL: 
> > http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/htdocs/modules/cgi/action.sh?rev=1918555&view=auto
> > ==============================================================================
> > --- httpd/test/framework/trunk/t/htdocs/modules/cgi/action.sh (added)
> > +++ httpd/test/framework/trunk/t/htdocs/modules/cgi/action.sh Mon Jun 24 
> > 17:34:10 2024
> > @@ -0,0 +1,18 @@
> > +#!/bin/sh
> > +
> > +CT=$(echo ${QUERY_STRING}|awk -F: '{print $1'})
> > +LOC=$(echo ${QUERY_STRING}|awk  -F: '{print $2'})
> > +
> > +echo Content-type: ${CT}
> > +echo Location: ${LOC}
> > +echo
> > +echo "this is action.sh"
> > +#!/bin/sh
> > +
> > +CT=$(echo ${QUERY_STRING}|awk -F: '{print $1'})
> > +LOC=$(echo ${QUERY_STRING}|awk  -F: '{print $2'})
> > +
> > +echo Content-type: ${CT}
> > +echo Location: ${LOC}
> > +echo
> > +echo "this is action.sh"
>
> Is this a copy and double paste error? The script contents are contained
> twice in the file.

Somehow yes, fixed in 1918686. Thanks!

Reply via email to