#!/usr/bin/python2.6 """ Simple script to add a prefix to every line in a file. """ import sys for line in sys.stdin: print sys.argv[1] + line,