-
Notifications
You must be signed in to change notification settings - Fork 2
/
common.sh
28 lines (25 loc) · 988 Bytes
/
common.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
########################################################
# set a secret in a key vault
# Example:
# setsecret <secret name> <vault name> <secret value>
########################################################
function setsecret {
echo "Created secret with id $(az keyvault secret set -n $1 --vault-name $2 --value $3 --query id)"
}
########################################################
# write random string to STDOUT
# Example:
# randomstring <length of string>
########################################################
function randomstring {
cat /dev/urandom | env LC_CTYPE=C tr -dc 'a-zA-Z0-9!"#$%&'\''()*+,-./:;<=>?[\]^_`{|}~' | fold -w $1 | head -n 1
}
########################################################
# write random alpha string to STDOUT
# Example:
# randomalpha <length of string>
########################################################
function randomalpha {
cat /dev/urandom | env LC_CTYPE=C tr -dc 'a-zA-Z' | fold -w $1 | head -n 1
}