## vim:ft=zsh ## Change password on all machines ## Copyright (C) 2008 by Daniel Friesel ## License: WTFPL typeset host passwd for host in ${(k)hosts}; { if [[ $host != $HOST ]]; { echo " ---- $host ---- " ssh $host passwd } }