I'm creating a script in bash to install and configure all my workspace. How do I remove my ssh keys in github from command line?
I already search about and found this command, but this is specifically for deploy and not remove.
curl -u 'user:password' --data '{"title":"My SSH","key":"'"$(cat ~/.ssh/id_rsa.pub)"'"}' https://api.github.com/user/keys
The code above works perfectly but how do I remove (if exists) instead of deploy?







