User:Scsbot/formtools/formsubmit

Hello, you have come here looking for the meaning of the word User:Scsbot/formtools/formsubmit. In DICTIOUS you will not only get to know all the dictionary meanings for the word User:Scsbot/formtools/formsubmit, but we will also tell you about its etymology, its characteristics and you will know how to say User:Scsbot/formtools/formsubmit in singular and plural. Everything you need to know about the word User:Scsbot/formtools/formsubmit you have here. The definition of the word User:Scsbot/formtools/formsubmit will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofUser:Scsbot/formtools/formsubmit, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
tag=$1
baseurl=$2
cookiefile=$3

baseurl2=`expr "$baseurl" : '\(*//*\).*'`

tf3=tf$$.3

rm="/bin/rm -f"

submurl=`cat \`formgettmpfile $tag .action\``	# XXX
submmethod=`cat \`formgettmpfile $tag .method\``	# XXX

if test $submmethod != "post"
then
	echo "unexpected (form method $submmethod)" >&2
	exit 1
fi

if expr "$submurl" : '^/' > /dev/null
then	:
else
	echo "unexpected (non-relative submission URL $submurl)" >&2
	exit 1
fi

# XXX:
submurl=`echo "$submurl" | sed 's/&/\&/g'`

sep=abcdefghijklmnopqrstuv

formmakesubm $tag $sep | sed 's/$/
/' > $tf3

httpget -cookies -cookiefile $cookiefile -post -type "multipart/form-data; boundary=$sep" "$baseurl2/$submurl" < $tf3

$rm $tf3

exit 0