#!/usr/bin/env python2.4 """ Script that just echos the command line. """ import sys print '-' * 20, "
" for elem in sys.argv: print elem, "
" print '-' * 20, "
"