7.2 Zeilen lesen mit read

Der Befehl read stellt eine der wichtigsten Methoden dar, um Informationen in ein Shell-Programm zu bekommen:

$ x=abc ; printf "x ist jetzt '%s'. Neuen Wert eingeben: " $x ; read x
x ist jetzt 'abc'. Neuen Wert eingeben: PDQ
$ echo $x
PDQ

Get Klassische Shell-Programmierung now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.