哪条语句可以将 ls -l 的完整输出捕获到 shell 变量中?
ls -l
ls -l > ls_output
ls_output=$(ls -l)
ls_output='ls -l'
$ls_output ls -l