Skip to content

Commit

Permalink
Upgrade app to 0.1.0 (automatic commit)
Browse files Browse the repository at this point in the history
  • Loading branch information
e-picas committed Apr 27, 2016
1 parent dab2528 commit 5c6e7ea
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion libexec/bash-utils-core
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http://www.apache.org/licenses/LICENSE-2.0>
This program is free software, distributed on an \"AS IS\" BASIS,
Expand Down
4 changes: 2 additions & 2 deletions man/MANPAGE.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions man/MANPAGE.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions man/bash-utils.1.man
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 "<bold>test</bold>"'
bash-utils --exec='onoff_bit true'
.br
echo 'colored-output "<bold>test</bold>"' | bash-utils --exec
echo 'onoff_bit true' | bash-utils --exec
.br
.PP
The following additional arguments are available when you call the library itself:
Expand Down Expand Up @@ -139,13 +139,13 @@ file that was distributed with this source code or see
<http://www.apache.org/licenses/LICENSE-2.0>.
.SH BUGS
.PP
To transmit bugs, see <http://github.com/piwi/bash-utils/issues>.
To transmit bugs, see <http://github.com/e-picas/bash-utils/issues>.
.SH AUTHOR
.PP
\fBBash-Utils\fP is created and maintained by Pierre Cassat (piwi - <http://e-piwi.fr/>)
\fBBash-Utils\fP is created and maintained by Pierre Cassat (picas - <http://picas.fr/>)
& contributors.
.SH SEE ALSO
.PP
For documentation, sources & updates, see <http://github.com/piwi/bash-utils.git>.
For documentation, sources & updates, see <http://github.com/e-picas/bash-utils.git>.
.PP
bash(1), bash-utils(7)
14 changes: 7 additions & 7 deletions man/bash-utils.7.man
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 5c6e7ea

Please sign in to comment.