Promoting Diversity 2019‑05-19 Wander Boessenkool shell , random , passwd Add this one as /etc/cron.daily/diversity to give your users the diversity they so rightly deserve. 1 2 3 4 5 #!/bin/bash for I in $(getent passwd | cut -d: -f1 ) do chsh -s $(sort -R /etc/shells | head -n1) ${I} done