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
/** | |
* Retrieves all the rows in the active spreadsheet that contain data and logs the | |
* values for each row. | |
* For more information on using the Spreadsheet API, see | |
* https://developers.google.com/apps-script/service_spreadsheet | |
*/ | |
function readRows() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var rows = sheet.getDataRange(); | |
var numRows = rows.getNumRows(); |
How do you navigate in your terminal? Do you chain sequences of
cd
commands together, or copy a file path and paste it? Sometimes to a destination directory that's not adjacent to your current one?
cdp
might be the solution for you. It's a command that activates an interactive way to navigate directories smoothly and easily. Compatible with bash and zsh.
cdp
to activate- ↑/↓ to change the selected subdirectory
- ← to move into the parent subdirectory (disallowed when in $HOME)
How do you navigate in your terminal? Do you chain sequences of
cd
commands together, or copy a file path and paste it? Sometimes to a destination directory that's not adjacent to your current one?
cdp
might be the solution for you. It's a command that activates an interactive way to navigate directories smoothly and easily. Compatible with bash and zsh.
cdp
to activate- ↑/↓ to change the selected subdirectory
- ← to move into the parent subdirectory (disallowed when in $HOME)