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

# 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
