#!/bin/sh

echo
echo Type "./setperms.sh" or "/bin/sh setperms.sh" to execute this script.
echo
echo This script will make the ag.pl, ag-admin.pl scripts executable, and
echo will make the data folder writable.
echo

chmod 755 ag*.*
chmod -R 777 data


