A PDF with instructions for the final project is posted on the website.
Your script may need to loop through some files. Bash has a for loop that you can use to do this
This will print all files ending with .txt to the terminal. The
syntax is
for <varname> in <list of items separated by space>
.
You can use for loops in scripts and directly in the shell.
Gnuplot takes a -e
argument that lets you specify a
script to run as an option.
$ gnuplot -e 'set xrange[0:pi]; set yrange[-1.1:1.1]; plot sin(x)'
Your script will need to use a tool to create movie files from a
sequence of images. You can use ffmpeg
for this.