gpg --export [email protected] > my_key.pub
The file can then be shared to other people.
gpg --export [email protected] > my_key.pub
The file can then be shared to other people.
Modern terminals support hyperlinks, which are quite convenient, and can be opened with Ctrl + click or Cmd + click
Here's a simple command to try out the feature. The result is equivalent to this HTML link: This is a link
echo -e "\e]8;;https://example.com\e\\This is a link\e]8;;\e\\"
#!/usr/bin/env bash | |
curl -s https://github.com/OWNER/REPO | grep -oE 'https://camo[^"]+' | while read i; do curl -X PURGE "$i"; done |