エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
How do I escape quotes for JSON conversion in Bash
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
How do I escape quotes for JSON conversion in Bash
I have a file which I need to convert to a JSON string and it needs to be done via bash. My test ... I have a file which I need to convert to a JSON string and it needs to be done via bash. My test file looks like 1 2 ' 3 4 Here is what's happening $ LOG=$(cat file) $ printf '{"log": "%q"}\n' "$LOG" {"log": "$'1\n2\n\'\n3\n4'"} Things seem ok like it's handling the newlines and the ', but it's adding a $' at the start and a ' at the end.