#!/bin/sh

grep -v /bin/zsh /etc/shells > /tmp/shells$$
    cp /tmp/shells$$ /etc/shells
    rm -f /tmp/shells$$
