Athenaの結果をSedコマンドでBlazingText用に整形する
備忘録的なものですが。
athenaで得られた結果は以下のcsvになってます。
"column"
"ああああ いいいい うううう"
"ああああ いいいい うううう"
"ああああ いいいい うううう"
"ああああ いいいい うううう"
BlazingTextで読み込むかたちにするには以下
- head行を取り除く
- 先頭、最後のダブルクォーテーションを取り除く
- 中身が半角スペースで分かち書きされている
- こちらに関しては事前に
整形コマンド
ヘッダーをまず削る。
sed '1d' athena.csv > noheader.txt
先頭と最後のダブルクォーテーションを取り除く
sed -e 's/^"//g' -e 's/"$//g' noheader.txt > result.txt
Author And Source
この問題について(Athenaの結果をSedコマンドでBlazingText用に整形する), 我々は、より多くの情報をここで見つけました https://qiita.com/RyujiKawazoe/items/f55d511fba66c2f72d9a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .