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/env bash | |
| # | |
| # bitprice - bitcoin price grabber | |
| # | |
| # Version 1.2 | |
| # | |
| # By Kevin MacMartin ([email protected]) | |
| # Released under the MIT license | |
| # |
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/env bash | |
| # | |
| # browser-remote-watch: reload the page when the source changes | |
| # | |
| # Version 1.1 | |
| # | |
| # Written by Kevin MacMartin ([email protected]) | |
| # Released under the MIT license | |
| # |
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/env bash | |
| # | |
| # VimNotes: Wrapper script for the Vim Notes plugin | |
| # | |
| # Version: 1.0 | |
| # | |
| # Written by Kevin MacMartin <[email protected]> | |
| # Released under the MIT license | |
| # |
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/env bash | |
| user=username | |
| # Load category from .cat, or fail if it can't be found | |
| [[ ! -f '.cat' ]] && { | |
| printf '%s\n' 'Error: could not find .cat' >&2 | |
| exit 1 | |
| } | |
| category="$(<.cat)" |
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/env bash | |
| script_name=$(egrep -o "[^\/]*$" <<< "$0") | |
| function help { | |
| printf '%s\n' "Usage:" | |
| printf '%s\n' " $script_name e input output → encode to output" | |
| printf '%s\n' " $script_name e input → encode to stdout" | |
| printf '%s\n' " $script_name d input output → decode to output" | |
| printf '%s\n' " $script_name d input → decode to stdout" |
OlderNewer