GAS
claspを導入する ここの手順でインストール済み。 隠しファイル・隠しフォルダの表示切り替えは[shift + command + .]でできる。 Google Apps Script API の有効化 https://script.google.com/home/usersettings 上記にアクセスして、Google Apps Script API…
claspの導入理由 Google Apps Scriptのソース管理をgitで行いたい。 好きなエディタで開発したい。 以上。 Homebrewの導入 公式サイト : https://brew.sh/index_ja /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/mast…
// フォルダの取得 // フォルダ名はプロパティで設定済み function getFolder() { var folder = PropertiesService.getScriptProperties().getProperty("folderName"); if (getMainFolder) { return getMainFolder; } // フォルダの存在チェック getMainFold…