| What I call it | Symbol | What a grown-up might call it |
|---|---|---|
| Banana | ( or ) |
Parenthesis |
| Football | () |
Open/closed parentheses |
| Mustache | { or } |
Curly Brace |
| Goatee | {} |
Open/closed curly braces |
| Staple | [ or ] |
Square bracket |
| Box | [] |
Open/closed square brackets |
| Alligator | < or > |
Angle bracket |
| Alligators kissing | <> |
Open/closed angle brackets OR fragment |
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 | |
| MESSAGE=$1 | |
| pushd () { | |
| command pushd "$@" > /dev/null | |
| } | |
| popd () { | |
| command popd "$@" > /dev/null |
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 | |
| function main() { | |
| install_packages | |
| add_setup | |
| add_configuration | |
| configure_compilation | |
| add_test_script | |
| } |
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/sh | |
| git fetch origin | |
| npx --yes git-branch-selector | |
| git pull |
OlderNewer