blob: 11bae71d1c3b4190cd7270dbd82a61d85e40afbd (
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>alkfjaiasdfaslasjf</content>
</entry>
</feed>'
exit 0
|