Add cURL cheatsheet and GPG key renewing
This commit is contained in:
parent
8e164cb0ad
commit
db4844fbc6
1 changed files with 22 additions and 0 deletions
22
how_to
22
how_to
|
@ -1036,3 +1036,25 @@ Consistent desktop theme:
|
|||
themes:
|
||||
Gruvbox-Material-Dark has issues with GIMP and probably caused a few other crashes
|
||||
gruvbox-dark-[icons-]gtk doesn't look too bad at first glance (GIMP not broken) (is on AUR)
|
||||
|
||||
cURL cheatsheet:
|
||||
custom user agent:
|
||||
curl -A "<user agent>" <URL>
|
||||
Show headers:
|
||||
Just response headers
|
||||
curl -I <URL>
|
||||
full verbose dump
|
||||
curl -v <URL>
|
||||
Follow redirects:
|
||||
curl -L <URL>
|
||||
|
||||
GPG:
|
||||
Renew expired GPG public keys:
|
||||
# https://unix.stackexchange.com/a/177310/248368
|
||||
gpg --edit-key "<key>"
|
||||
> expire
|
||||
...
|
||||
> key 1
|
||||
> expire
|
||||
...
|
||||
> save
|
||||
|
|
Loading…
Reference in a new issue