#!/bin/sh

# $Id: perl,v 1.2 2003/06/30 10:06:32 cher Exp $
# This is a 'compilation' script for the Perl language.
# The idea is to append "#!/usr/bin/perl -W" string
# to the beginning of the file.
# Usage: perl <input> <output>

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