首页 > Web开发 > 详细

how to write bash shell CGI under uHTTPd

时间:2017-04-21 17:28:43      阅读:373      评论:0      收藏:0      [点我收藏+]

how to write bash shell CGI under uHTTPd

Target

Want to provide the smaple RESTful server under uHTTPd on OpenWRT, I select the bash script for a demo

Reference

Bash CGI
Web CGI with Bash Script
PostMan Tester

WWW ROOT Dir on OpenWRT

/www/cgi/test.cgi

  1. #!/bin/sh  
  2. POST_STRING=$(cat)  
  3. echo "Content-type: application/json" 
  4. echo ""  
  5. echo "$POST_STRING"  

uHTTPd passes ‘GET’ paramter to bash by ‘$QUERY_STRING’
uHTTPd passes ‘POST’ conent to bash by STDIN, so bash use ‘POST_STRING=$(cat)’ to get them

Browser Client Access

http://192.168.254.219/cgi-bin/test.cgi


nicephil@gmail.com 2017-4-21

how to write bash shell CGI under uHTTPd

原文:http://www.cnblogs.com/nicephil/p/6744559.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!