This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [ $# != 4 ] | |
| then | |
| echo | |
| echo "This script expects 4 arguments:" | |
| echo "1) an m-file function name (without the .m)" | |
| echo "2) an integer argument (number of images to use)" | |
| echo "3) a string argument indicating the path to the image folder (no quotes)" | |
| echo "4) a string argument with the email address to send the completion email to" |