#!/bin/bahs for i in {1..10};do a=$(($i%2)) b=$(($i%3)) if test $a -eq 0 -o $b -eq 0 ; then echo $i fi