“Shell Script Store Commande Sortie en variable” Réponses codées

Enregistrer la sortie de la commande à Craible Bash

password=$(openssl rand -base64 32)
echo $password
TheLazyLemur

Enregistrer la sortie de la commande à la variable bash

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

MULTILINE=$(ls \
   -1)
echo "${MULTILINE}"
Distinct Dormouse

stocker la sortie imprimée en bash variable

#For storing and printing output at the same time do following:
OUTPUT=$(ls -1) #First assign output of command execution to a variable 
echo "${OUTPUT}" #Then print out the result in variable into the terminal
Armandres

Shell Script Store Commande Sortie en variable

#Just use following structure to store output of command into a variable:
var=$(command)
#For example:
var=$(echo 'hi')	#store hi into var
var=$(ls)	#store list of files into var
Armandres

Réponses similaires à “Shell Script Store Commande Sortie en variable”

Questions similaires à “Shell Script Store Commande Sortie en variable”

Plus de réponses similaires à “Shell Script Store Commande Sortie en variable” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code