Como Ignatio sugeriu, isso pode ser feito grep -v
.
Aqui está um exemplo que remove a chave que contém some unique string
ou simplesmente exclui o authorized_keys
arquivo quando nenhuma outra chave permanece.
if test -f $HOME/.ssh/authorized_keys; then
if grep -v "some unique string" $HOME/.ssh/authorized_keys > $HOME/.ssh/tmp; then
cat $HOME/.ssh/tmp > $HOME/.ssh/authorized_keys && rm $HOME/.ssh/tmp;
else
rm $HOME/.ssh/authorized_keys && rm $HOME/.ssh/tmp;
fi;
fi
Substitua some unique string
por algo que só existe na chave que você deseja remover.
Como um delineador sobre ssh, isso se torna
ssh hostname 'if test -f $HOME/.ssh/authorized_keys; then if grep -v "some unique string" $HOME/.ssh/authorized_keys > $HOME/.ssh/tmp; then cat $HOME/.ssh/tmp > $HOME/.ssh/authorized_keys && rm $HOME/.ssh/tmp; else rm $HOME/.ssh/authorized_keys && rm $HOME/.ssh/tmp; fi; fi'
Testado no Linux (SLES) e HP-UX.