[go: up one dir, main page]

Menu

[r2]: / current / TEST2  Maximize  Restore  History

Download this file

13 lines (10 with data), 98 Bytes

#!/bin/bash

### testing conditionals...

i=1
case $i in
	1|2|10|25 )
	echo TRUE
	;;
	*)
	;;
esac