#!/bin/bashuser=$(cat /etc/passwd |grep "/bin/bash" |grep -v "root"| cut -d ":" -f 1)for i in $user do userdel -r $i done