A flexible, reusable logging module for Bash scripts that provides standardized logging functionality with various configuration options.
Important
This version of the bash logging module is now deprecated and the gist is no longer maintained. Please see the full release bash-logger
Note
This deprecated version has been left for reference purposes only.
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
| This gist includes the following sample files: | |
| - _config.yml | |
| - Gemfile | |
| - template Markdown file with Front Matters |
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
| # ----------------------------------------------------------------- | |
| # .gitignore | |
| # Forked from below source | |
| # Bare Minimum Git | |
| # http://ironco.de/bare-minimum-git/ | |
| # ver 20181206 | |
| # | |
| # From the root of your project run | |
| # curl -O https://gist.githubusercontent.com/salcode/10017553/raw/.gitignore | |
| # to download this file |
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
| // Add custom color schemes to this array. | |
| // To learn more about color schemes, visit https://aka.ms/terminal-color-schemes | |
| "schemes": [ | |
| { | |
| "name" : "Campbell", | |
| "background" : "#0C0C0C", | |
| "black" : "#0C0C0C", | |
| "blue" : "#0037DA", | |
| "brightBlack" : "#767676", | |
| "brightBlue" : "#3B78FF", |