linux set variable from command output code example
Example 1: save output of command to craible bash
password=$(openssl rand -base64 32)
echo $password
Example 2: store result of command in variable bash
variable=$(command [option…] argument1 arguments2 …)