Answers for "save output of command to variable bash"

2

save output of command to craible bash

password=$(openssl rand -base64 32)
echo $password
Posted by: Guest on November-06-2020
6

store result of command in variable bash

variable=$(command [option…] argument1 arguments2 …)
Posted by: Guest on March-13-2020
4

save output of command to variable bash

OUTPUT="$(ls -1)"
echo "${OUTPUT}"

MULTILINE=$(ls \
   -1)
echo "${MULTILINE}"
Posted by: Guest on May-04-2020

Code answers related to "save output of command to variable bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language