apache / incubator-hugegraph-doc

HugeGraph Website and Doc
https://hugegraph.apache.org/
Apache License 2.0
66 stars 100 forks source link

Update validate-release.md with non-interactive mode #189

Closed imbajin closed 1 year ago

imbajin commented 1 year ago

use echo -e "5\ny\n" | gpg --batch --command-fd 0 --edit-key $USER trust to avoid interactive mode

for more than one:

for key in $(gpg --no-tty --list-keys --with-colons | awk -F: '/^pub/ {print $5}'); do
  echo -e "5\ny\n" | gpg --batch --command-fd 0 --edit-key "$key" trust
done