aboutsummaryrefslogtreecommitdiff
path: root/sample-cgi-handler.sh
blob: 35e89ae22790215b94a3a9280778ce98ecac9552 (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>example content</content>
	</entry>
</feed>'
exit 0