aboutsummaryrefslogtreecommitdiff
path: root/sample-cgi-handler.sh
blob: bc82dc43b746ee933677ee90f7504a9846dee992 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
echo "Content-type: application/atom+xml"
echo ""
echo '<feed xmlns="http://www.w3.org/2005/Atom">
 	<entry>
    <content>alkfjlasjf</content>
	</entry>
</feed>'
exit 0