Bash Shell+CGI-BIN การเขียน cgi-bin ให้แสดงบันทักคำสั่ง Linux บนหน้าเว็บ

By | 19/02/2012

สำหรับ web server ที่รองรับ cgi-bin ก็เขียนได้ตามนี้ครับ

#!/bin/bash
echo "Content-type: text/html"
echo ""
echo "<html><head><title>Bash as CGI"
echo "</title></head><body>"
echo "<h1>Hello world</h1>"
echo "Today is $(date)"
echo "</body></html>"

ใส่ความเห็น