Download this file
#!/bin/bash ### testing conditionals... i=1 case $i in 1|2|10|25 ) echo TRUE ;; *) ;; esac