Final Project

Assignment

A PDF with instructions for the final project is posted on the website.

Useful Tools/Tips

Useful Tools/Tips

Your script may need to loop through some files. Bash has a for loop that you can use to do this

$ for file in *.txt
do
    echo "Filename: ${file}"
done

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.

Useful Tools/Tips

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)'

Useful Tools/Tips

Your script will need to use a tool to create movie files from a sequence of images. You can use ffmpeg for this.