Whitespace

This commit is contained in:
Kevin van Zonneveld 2016-02-17 13:46:05 +01:00
parent d43cecf24a
commit db690268ea
4 changed files with 8 additions and 1 deletions

View File

@ -2,21 +2,25 @@
# BASH3 Boilerplate # BASH3 Boilerplate
# #
# This file: # This file:
#
# - Is a template to write better bash scripts # - Is a template to write better bash scripts
# - Is delete-key friendly, in case you don't need e.g. command line option parsing # - Is delete-key friendly, in case you don't need e.g. command line option parsing
# #
# More info: # More info:
#
# - https://github.com/kvz/bash3boilerplate # - https://github.com/kvz/bash3boilerplate
# - http://kvz.io/blog/2013/02/26/introducing-bash3boilerplate/ # - http://kvz.io/blog/2013/02/26/introducing-bash3boilerplate/
# #
# Version: 2.0.0 # Version: 2.0.0
# #
# Authors: # Authors:
#
# - Kevin van Zonneveld (http://kvz.io) # - Kevin van Zonneveld (http://kvz.io)
# - Izaak Beekman (https://izaakbeekman.com/) # - Izaak Beekman (https://izaakbeekman.com/)
# - Alexander Rathai (Alexander.Rathai@gmail.com) # - Alexander Rathai (Alexander.Rathai@gmail.com)
# #
# Usage: # Usage:
#
# LOG_LEVEL=7 ./main.sh -f /tmp/x -d # LOG_LEVEL=7 ./main.sh -f /tmp/x -d
# #
# Licensed under MIT # Licensed under MIT

View File

@ -17,6 +17,7 @@
# Version: 2.0.0 # Version: 2.0.0
# #
# Authors: # Authors:
#
# - Kevin van Zonneveld (http://kvz.io) # - Kevin van Zonneveld (http://kvz.io)
# #
# Usage as a function: # Usage as a function:

View File

@ -16,6 +16,7 @@
# Version: 2.0.0 # Version: 2.0.0
# #
# Authors: # Authors:
#
# - Kevin van Zonneveld (http://kvz.io) # - Kevin van Zonneveld (http://kvz.io)
# #
# Usage as a function: # Usage as a function:

View File

@ -20,7 +20,8 @@
# Usage as a function: # Usage as a function:
# #
# source templater.sh # source templater.sh
# NAME=kevin templater input.cfg output.cfg # export NAME=kevin
# templater input.cfg output.cfg
# #
# Usage as a command: # Usage as a command:
# #