#!/usr/bin/env python
#
# Execute the file with the same name as myself minus the extension.
# Author: Peter Astrand <peter@cendio.com>
#
import os, sys
root, ext = os.path.splitext(sys.argv[0])
execfile(root)


syntax highlighted by Code2HTML, v. 0.9.1