Removed redundant --daemon-mode command & fixed broken socket errors
[uzbl-mobile] / examples / data / uzbl / scripts / uzblcat
1 #!/usr/bin/env python
2 # uzblcat - safely push html to uzbl
3 # See http://www.uzbl.org/wiki/html-mode
4
5 from sys import stdin, stdout
6
7 stdout.write("uri data:text/html,")
8 for line in stdin:
9     stdout.write(line[0:-1])
10
11 # vim: set noet ff=unix
12