#!/bin/sh 

# Make the letter A
# P. Conrad, 02/22/2007 for CISC181, Spring 2007

# Shell script to automate the process of running gnuplot,
# then copying the resulting png file to a web directory,
# then making that file available via chmod.


gnuplot A.gnuplot
cp A_v5.png ${HOME}/public_html/cisc181/foobar
chmod 644 ${HOME}/public_html/cisc181/foobar/A_v5.png


