“Simpan output perintah ke bash variabel” Kode Jawaban

Simpan output perintah ke craible bash

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

Simpan output perintah ke bash variabel

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

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

output perintah script store dalam variabel

#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

Jawaban yang mirip dengan “Simpan output perintah ke bash variabel”

Pertanyaan yang mirip dengan “Simpan output perintah ke bash variabel”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya