Std.shlib: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
:<br>https://github.com/NovaOrdis/std.shlib<br><br> | :<br>https://github.com/NovaOrdis/std.shlib<br><br> | ||
</blockquote> | </blockquote> | ||
=Integration= | |||
<pre> | |||
f= $(dirname $0)/std.shib; [ -f ${f} ] && . ${f} || { echo "${f} not found" 1>&2; exit 1; } | |||
</pre> |
Revision as of 09:23, 4 April 2016
Internal
Overview
Common bash functionality, such as fail and debug, and the logic to parse the corresponding command line switches.
GitHub
Integration
f= $(dirname $0)/std.shib; [ -f ${f} ] && . ${f} || { echo "${f} not found" 1>&2; exit 1; }