From 5c6e7ea6b19e600c527de7aaa325bab4af0eace2 Mon Sep 17 00:00:00 2001 From: picas Date: Wed, 27 Apr 2016 11:50:29 +0200 Subject: [PATCH] Upgrade app to 0.1.0 (automatic commit) --- libexec/bash-utils-core | 2 +- man/MANPAGE.1.md | 4 ++-- man/MANPAGE.7.md | 4 ++-- man/bash-utils.1.man | 16 ++++++++-------- man/bash-utils.7.man | 14 +++++++------- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/libexec/bash-utils-core b/libexec/bash-utils-core index acc6830..bd89f01 100644 --- a/libexec/bash-utils-core +++ b/libexec/bash-utils-core @@ -687,7 +687,7 @@ readonly BASH_UTILS_ROOT="${libexecdir}" readonly BASH_UTILS_MODULES="${libexecdir}/bash-utils-modules" readonly BASH_UTILS_NAME='Bash-Utils' readonly BASH_UTILS_KEY='bash-utils' -readonly BASH_UTILS_VERSION='0.0.1' +readonly BASH_UTILS_VERSION='0.1.0' readonly BASH_UTILS_COPYRIGHT='Copyright (c) 2015 Pierre Cassat & contributors' readonly BASH_UTILS_LICENSE="Apache Software Foundation license 2.0 This program is free software, distributed on an \"AS IS\" BASIS, diff --git a/man/MANPAGE.1.md b/man/MANPAGE.1.md index 5915656..0cf2c3b 100644 --- a/man/MANPAGE.1.md +++ b/man/MANPAGE.1.md @@ -2,8 +2,8 @@ Man: Bash-Utils Manual Man-name: bash-utils Author: Pierre Cassat Section: 1 -Date: 2015-08-23 -Version: 0.0.1 +Date: 2016-04-27 +Version: 0.1.0 ## NAME diff --git a/man/MANPAGE.7.md b/man/MANPAGE.7.md index 37a9d65..cf64266 100644 --- a/man/MANPAGE.7.md +++ b/man/MANPAGE.7.md @@ -2,8 +2,8 @@ Man: Bash-Utils Documentation Man-name: bash-utils Author: Pierre Cassat Section: 7 -Date: 2015-08-23 -Version: 0.0.1 +Date: 2016-04-27 +Version: 0.1.0 ## USAGE diff --git a/man/bash-utils.1.man b/man/bash-utils.1.man index 39f255a..4892791 100644 --- a/man/bash-utils.1.man +++ b/man/bash-utils.1.man @@ -2,9 +2,9 @@ .\" man-name: bash-utils .\" author: Pierre Cassat .\" section: 1 -.\" date: 2015-08-23 -.\" version: 0.0.1-rc -.TH "bash-utils" "1" "2015-08-23" "Version 0.0.1-rc" "Bash-Utils Manual" +.\" date: 2016-04-27 +.\" version: 0.1.0 +.TH "bash-utils" "1" "2016-04-27" "Version 0.1.0" "Bash-Utils Manual" .SH NAME .PP Bash-Utils - A short \fIbash\fP library for better scripting. @@ -77,9 +77,9 @@ The following additional options are available when you call the library itself: Execute the argument in the library's environment ; as the argument is optional, the equal sign is REQUIRED ; without argument, any piped content will be evaluated: .br -bash-utils --exec='colored-output "test"' +bash-utils --exec='onoff_bit true' .br -echo 'colored-output "test"' | bash-utils --exec +echo 'onoff_bit true' | bash-utils --exec .br .PP The following additional arguments are available when you call the library itself: @@ -139,13 +139,13 @@ file that was distributed with this source code or see . .SH BUGS .PP -To transmit bugs, see . +To transmit bugs, see . .SH AUTHOR .PP -\fBBash-Utils\fP is created and maintained by Pierre Cassat (piwi - ) +\fBBash-Utils\fP is created and maintained by Pierre Cassat (picas - ) & contributors. .SH SEE ALSO .PP -For documentation, sources & updates, see . +For documentation, sources & updates, see . .PP bash(1), bash-utils(7) diff --git a/man/bash-utils.7.man b/man/bash-utils.7.man index 7bf03d1..5ae54f9 100644 --- a/man/bash-utils.7.man +++ b/man/bash-utils.7.man @@ -2,9 +2,9 @@ .\" man-name: bash-utils .\" author: Pierre Cassat .\" section: 7 -.\" date: 2015-08-23 -.\" version: 0.0.1-rc -.TH "bash-utils" "7" "2015-08-23" "Version 0.0.1-rc" "Bash-Utils Documentation" +.\" date: 2016-04-27 +.\" version: 0.1.0 +.TH "bash-utils" "7" "2016-04-27" "Version 0.1.0" "Bash-Utils Documentation" .SH USAGE .PP To create a script using the library, you can call the \fImodel\fP argument of the library itself, which @@ -236,7 +236,7 @@ common_options "$@" .EE .RE .PP -You can \fBoverwrite any method\fP by re-defining it after having sourced the library: +You can \fBoverride any method\fP by re-defining it after having sourced the library: .RS .EX @@ -252,7 +252,7 @@ error() { .EE .RE .PP -The best practice is to create user methods instead of overwrite native ones and call them: +The best practice is to create user methods instead of overload native ones and call them: .RS .EX @@ -288,7 +288,7 @@ in case a choice is required (no prompt running the script) \fB-x\fP | \fB--debug\fP: enables the `\fS$DEBUG\fP` environment variable ; this should drastically increase script's verbosity (verbosity should be one level more than in `\fS$VERBOSE\fP` mode) .IP \(bu -\fB--dry-run\fP: enables the `\fS$DRY_RUN\fP` environment variable ; this should not de sensible stuff but inform user about +\fB--dry-run\fP: enables the `\fS$DRY_RUN\fP` environment variable ; this should not do sensible stuff but inform user about what should be done .RE .PP @@ -436,7 +436,7 @@ to make a silent sub-command call: `\fSval=$(sub-command 2>/dev/null)\fP` .TP \fIbin/bash-utils\fP | \fBlibexec/bash-utils\fP This is the "entry point" of \fIBash-Utils\fP ; it should be available in one of the `\fS$PATH\fP` paths for all users ; -it acts like a loader of the library and a script's interpreter you can use in a script's \fIshebang\fP. +it acts like a loader of the library and a script's interpreter you can use as a script's \fIshebang\fP. .TP \fBlibexec/bash-utils-core\fP This is the core of \fIBash-Utils\fP ; it mostly defines required functions and environment variables for the library