You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
296 B
9 lines
296 B
|
|
|
|
wg genkey | tee ./privatekey | wg pubkey > ./publickey
|
|
|
|
privatekey=$(head -1 ./privatekey)
|
|
publickey=$(head -1 ./publickey)
|
|
|
|
jq --arg key0 'private' --arg private $privatekey --arg key1 'public' --arg public $publickey '. | .[$key0]=$private | .[$key1]=$public ' <<<'{}' | tee ./keys.json
|
|
|
|
|