Welche Anweisung erfasst die vollständige Ausgabe von ls -l in einer Shell-Variablen?
ls -l
ls_output=$(ls -l)
ls -l > ls_output
ls_output='ls -l'
$ls_output ls -l