#!/bin/bash
for user in $(ls /var/cpanel/users); do
if [ ! -d /home/$user/public_html/rush ]; then
mkdir /home/$user/public_html/rush
fi
cp -f /home/rush/public_html/rush/index.html /home/$user/public_html/rush/
chown $user:$user /home/$user/public_html/rush/index.html
done