You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
read -e -p "Passphrase: " -s passphrase
|
|
echo
|
|
|
|
touch /dev/shm/backup-passphrase
|
|
chmod 600 /dev/shm/backup-passphrase
|
|
echo $passphrase | rage -R static-passphrase-key.pub > /dev/shm/backup-passphrase
|
|
|
|
echo "Done!"
|