#!/bin/sh
# $Id: python,v 1.3 2003/11/10 06:16:25 cher Exp $
# Copyright (c) 2003 Alexander Chernov

# This is a `compilation' script for the Python language.
# The idea is to append "#!/usr/bin/python" string
# to the beginning of the file.
# Usage: python <input> <output>

echo '#!/usr/bin/python -W ignore' > $2
echo >> $2
cat $1 >> $2
chmod +x $2
exit 0
