This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function run() { | |
| groupByColumn(0); | |
| groupByColumn(1); | |
| groupByColumn(2); | |
| } | |
| function selectRows(sheet, startRow, endRow) { | |
| let numRows = endRow - startRow; | |
| let startRow1Indexed = startRow + 2; | |
| return sheet.getRange(startRow1Indexed, 1, numRows, sheet.getDataRange().getNumColumns()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -o errexit # Exit on error | |
| set -o nounset # Treat unset variables as an error | |
| set -o pipefail # Consider errors in a pipeline | |
| default_editor=${EDITOR:-vim} | |
| temp_file_path=$(mktemp /tmp/clip_temp.XXXXXX) | |
| trap "rm -f $temp_file_path" EXIT |
OlderNewer