-1
我怎樣才能回聲並保存爲變量?如何將bash上的回顯保存爲變量?
[email protected]:~/pc$ php get.php | grep "PhP" | cut -c24-33 | sed -n 1p
PhP 47.813
這是輸出
[email protected]:~/pc$ out=$(php get.php | grep "PhP" | cut -c24-33 | sed -n 1p) | echo $out
[email protected]:~/pc$
但在這裏沒有輸出
可能重複的[如何設置一個變量等於Bash命令的輸出?](http://stackoverflow.com/questions/4651437/how-to-set-a -variable-等於對所述輸出-從-A-命令在-bash)的 –