Lösung 1:
X=`(Zeit ls) 2>&1 | grep echt`
Lösung 2:
Siehe BashFAQ/032.
$ # captures output of command and time
$ time=$( TIMEFORMAT="%R"; { time ls; } 2>&1 ) # note the curly braces
$ # captures the time only, passes stdout through
$ exec 3>&1 4>&2
$ time=$(TIMEFORMAT="%R"; { time ls 1>&3 2>&4; } 2>&1)
bar baz
$ exec 3>&- 4>&-
Die Zeit wird mit TIMEFORMAT="%R"
wie "0.000" aussehen das wird die "echte" Zeit sein.
Lösung 3:
Time schreibt seine Ausgabe in STDERR und nicht in STDOUT. Erschwerend kommt hinzu, dass 'time' standardmäßig ein in die Shell eingebauter Befehl ist. Wenn Sie also 'time ls 2>&1' versuchen, gilt '2>&1' nur für 'ls'.
Die Lösung wäre wahrscheinlich so etwas wie:
/usr/bin/time -f 'real %e' -o OUTPUT_FILE ls > /dev/null 2>&1<br>
REALTIME=$(cat OUTPUT_FILE | cut -f 2 -d ' ')
Es gibt ausgefallenere Wege, dies zu tun, aber das ist der klare/einfache Weg.