Annotation of OpenXM/src/asir-port/cgi/cgi-asir-r-fd.sh, Revision 1.1
1.1 ! takayama 1: #!/bin/bash
! 2: # $OpenXM$
! 3: ## Replace $OpenXM_HOME by an absolute path of your cite.
! 4: source $OpenXM_HOME/rc/dot.bashrc
! 5: #source /home/taka/OpenXM/rc/dot.bashrc
! 6: export TMP=/tmp
! 7: export CGI_ASIR_ALLOW="[(version) (asir_contrib_copyright) (r_ahvec)]"
! 8: export CGI_ASIR_TLIMIT="3600"
! 9: export OX_ASIR_LOAD_FILE=$OpenXM_HOME/src/asir-port/cgi/r-fd.rr
! 10: export CGI_ASIR_MSG="<pre>
! 11: Example. r_fd(-1,[-2,-3],10,[[1,1/2,1/3],[1,1,1]]);
! 12: </pre><br>"
! 13: WFILE=/tmp/tmp-post-$$.txt
! 14: tee /tmp/t.txt | oxdecode_post >${WFILE}
! 15: env CONTENT_LENGTH=`wc -m ${WFILE} | awk '{print $1}'` sm1 -q -s "[(parse) (cgiasir.sm1) pushfile] extension oxNoX cgiAsir quit " <${WFILE}
! 16: rm -f ${WFILE}
! 17: exit 0
! 18:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>