This file contains 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
/** | |
* Add indentation / unindentation to Google Sheets | |
* | |
* @author Dan Bennett <[email protected]> | |
* @package SpreadsheetIndent | |
* @version 5.0.0 | |
* @license http://opensource.org/licenses/BSD-3-Clause BSD 3-clause | |
* @todo Toggles for common indentation setups (4 spaces, 1 tab, ">>", " »") | |
* @todo Keyboard shortcuts not possible, what about right-click? | |
*/ |
This file contains 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 | |
# backup "<path>" | |
# create a new folder in the backups directory and dump the current directory's contents into it | |
backup(){ | |
mkdir "/path/to/backups/$1"; | |
cp -r . "/path/to/backups/$1"; | |
} | |
# bs |