“Simpan output cetak dalam bash variabel” Kode Jawaban

Simpan output perintah ke craible bash

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

Simpan output cetak dalam bash variabel

#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

Jawaban yang mirip dengan “Simpan output cetak dalam bash variabel”

Pertanyaan yang mirip dengan “Simpan output cetak dalam bash variabel”

Lebih banyak jawaban terkait untuk “Simpan output cetak dalam bash variabel” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya