“Der Befehlsausgabe des Shell -Skriptspeichers in Variable” Code-Antworten

Speichern Sie die Ausgabe des Befehls in Craible Bash

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

Speichern Sie die Ausgabe des Befehls in variabler Bash

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

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

Gedruckte Ausgabe in variabler Bash speichern

#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

Der Befehlsausgabe des Shell -Skriptspeichers in 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

Ähnliche Antworten wie “Der Befehlsausgabe des Shell -Skriptspeichers in Variable”

Fragen ähnlich wie “Der Befehlsausgabe des Shell -Skriptspeichers in Variable”

Weitere verwandte Antworten zu “Der Befehlsausgabe des Shell -Skriptspeichers in Variable” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen