0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RealtimeDatabase のデータ修正を自動化するためのスクリプト

Last updated at Posted at 2019-03-27

結論


#!/bin/zsh
function fix () {
    expect -c "
    spawn firebase database:update $1 <JSONのパス>
    expect \"(y/N)\"
    send \"y\n\"
    expect \"View data at\"
    exit 0
    "
}

# ↓これをループ処理でよしなにしてどうぞ
fix <DB内のパス>


あってないような説明(ダブルミーニング)

  • firebase database:updateで任意のパスの値を書き換えられるぞー。
    • updatesetの違いは公式で確認してくれよな。
  • expectコマンドを使うとCLIの操作を自動化できるぞー。
  • expectはインストールしろみたいな情報もあるけど多分入ってるからman expectで確認してどうぞ。
  • send \"y\n\"\nがEnterと同じ意味やで。
  • expectの引数は適当でも意外とマッチするぜ。
  • exitのタイミングは考えないと処理が途中で終わっちゃうね。まあTry&Errorしてみよか。

おわりに

  • シェルクソ雑魚パーソンなので謎に時間を消費したのにむしゃくしゃして書きました。
  • Firebase-CLIの公式リファレンス、説明少なくね?(まあそんなもんか?)

参考文献

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?