ファイルの最後にテキストをエコー/追加する方法を知っています:
echo "{ "fruit":"apple" , "amount":"10" }" >> file.txt
私の質問は、以下のjsonファイルにオブジェクトを追加する方法です:
ファイル - file.txt (空):
{
"fruit": [
]
}
期待される結果:
{
"fruit": [
{ "fruit":"apple" , "amount":"10" } #object to add
]
}