Added inline_doc fragment and trailing space clean-up.
This commit is contained in:
parent
2faca44d39
commit
89a2b7016d
1 changed files with 38 additions and 14 deletions
24
extras/farce
24
extras/farce
|
@ -1,5 +1,11 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Acknowledgment:
|
||||||
|
# The following code is a no-modified version (except for this comment
|
||||||
|
# and the inline_doc fragment) of an original work written by
|
||||||
|
# Ken Moffat and is included here with his permission.
|
||||||
|
#
|
||||||
|
|
||||||
# FARCE: Farce Assists Rebuild Comparison Evaluation ;)
|
# FARCE: Farce Assists Rebuild Comparison Evaluation ;)
|
||||||
#
|
#
|
||||||
# to answer the question "can it rebuild itself?"
|
# to answer the question "can it rebuild itself?"
|
||||||
|
@ -103,6 +109,24 @@
|
||||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
: <<inline_doc
|
||||||
|
desc: do farce analisys and report
|
||||||
|
usage: farce -directory $FARCELOGDIR/dir path1 list1 path2 list2
|
||||||
|
input vars: $1 farce log dir for this comparation
|
||||||
|
$2 full path to previous iteration
|
||||||
|
$2 full path to filelist for previos iteration
|
||||||
|
$3 full path to current iteration
|
||||||
|
$4 full path to filelist for current iteration
|
||||||
|
externals: --
|
||||||
|
modifies: --
|
||||||
|
returns: --
|
||||||
|
on error:
|
||||||
|
on success:
|
||||||
|
inline_doc
|
||||||
|
|
||||||
|
|
||||||
VERSION="002"
|
VERSION="002"
|
||||||
|
|
||||||
# variables for output files
|
# variables for output files
|
||||||
|
|
Reference in a new issue