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 | |
| echo MUST be on branch dev-bridge | |
| read -p "Do you want to make branch dev-bridge? Y or N: " -n 1 -r | |
| echo # (optional) move to a new line | |
| if [[ $REPLY =~ ^[Yy]$ ]] | |
| then | |
| git checkout -b dev-bridge | |
| fi |
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
| #!/usr/bin/bash | |
| ################################################################################ | |
| # script template # | |
| # # | |
| # Use this template as the beginning of a new program. Place a short # | |
| # description of the script here. # | |
| # # | |
| # Change History # | |
| # 11/11/2019 David Both Original code. This is a template for creating # | |
| # new Bash shell scripts. # |