Gone are the days...
So to avoid those conversations all together:
$ {
for user in davecheney robpike ardan-bkennedy
do
curl https://github.com/$user.keys >> .ssh/authorized_keys
done
}
And start having these conversations:
This will also work with gitlab
Top comments (4)
Why the curly braces?
It's just brace expansion you can copy 🍝 without and it'll work.
It's just habit because I personally prefer it, because you can add other things to run without creating a file.
Every day you learn something new, thanks!
🤗