>>>>> "Chip" == Chip Atkinson <chip at pupman.com> writes: Chip> One thing you could try is Chip> for i in 0 1 2 3 4 5 6 7 8 9; do Chip> kill 111${i} Chip> done The "seq" command is handy for things like this. kill $( seq 1110 1119 )