#!/bin/bash
for i in `awk '{print $1}' users.list`
do
  userdel -r $i && echo "remove user $i OK"
done
