#!/bin/bash for i in `ls /home`; do if [ $i == 'imcoh' ] || [ $i == 'crille' ]; then continue fi sh ./deleteuser.sh $i #echo "User: " $i done