それは簡単です:
export a=$(avconv -i "first.mp3")
または
export a=`avconv -i first.mp3`
avconvの出力は変数aではなく標準出力に移動します。
ベストアンサー1
以下を試してください。
a="$(avconv -i first.mp3 2>&1)"
それは簡単です:
export a=$(avconv -i "first.mp3")
または
export a=`avconv -i first.mp3`
avconvの出力は変数aではなく標準出力に移動します。
以下を試してください。
a="$(avconv -i first.mp3 2>&1)"