- Create a random key.
- Encrypt the random key via an SSH RSA public key
- Send the encrypted file and encrypted key
- Encrypt the key
- Encrypt the file
openssl genrsa -out rsa.private 4096
#!/bin/sh | |
set -e | |
set -x | |
# ==> Install Docker | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
apt-key fingerprint 0EBFCD88 | |
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
apt-get update |
#!/bin/bash | |
APITOKEN=YOUR_TOKEN | |
OUTDIR=voices | |
VOICES=(de-DE-Standard-A de-DE-Standard-B de-DE-Wavenet-A de-DE-Wavenet-B de-DE-Wavenet-C de-DE-Wavenet-D) | |
TEXT="Hier ein deutscher Satz" | |
mkdir -p $OUTDIR | |
for voice in "${VOICES[@]}" |
#!/usr/local/bin/bash | |
TARGETS=(ipad-notif-1 ipad-notif-2 ipad-settings-1 ipad-settings-2 ipad-spotlight-1 ipad-spotlight-2 ipad-app-1 \ | |
ipad-app-2 ipad-pro-app-2 itunes) | |
declare -A NAME=( | |
[ipad-notif-1]="iPad Notifications 1x" | |
[ipad-notif-2]="iPad Notifications 2x" | |
[ipad-settings-1]="iPad Settings 1x" | |
[ipad-settings-2]="iPad Settings 1x" | |
[ipad-spotlight-1]="iPad Spotlight 1x" |