I use ssh forwarding alot and I'm concerned about "agent hijacking", so, I like to use -c option when calling ssh-add, which enforces confirmation on every key usage.
How can I turn the confirmations on by-default, so I don't have to use -c every time?
inb4 "Use bash aliases, Luke!": aliases are good thing, but I look for more convinient way to enforce this ssh-add behavior. If there just isn't any, aliases will be enough.
ssh-addyou will notice that there is no setting which would allow you to do this by default. Ergo the answer is either to use aliases ormvssh-add to some other location, then call it from a script namedssh-add. But you knew that already.