From: Steven Baltakatei Sandoval Date: Fri, 10 Jul 2020 20:33:04 +0000 (+0000) Subject: chore(unitproc):appendFileTar:Minor comment X-Git-Tag: 0.3.0~14 X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2020-03.git/commitdiff_plain/60a186e8394aec091991c54f4d1ce1a5ac0021f8 chore(unitproc):appendFileTar:Minor comment --- diff --git a/unitproc/bktemp-appendFileTar b/unitproc/bktemp-appendFileTar index e0bccbb..04cda7c 100644 --- a/unitproc/bktemp-appendFileTar +++ b/unitproc/bktemp-appendFileTar @@ -7,7 +7,7 @@ try() { "$@" || die "cannot $*"; } appendFileTar(){ # Desc: Appends [processed] file to tar # Usage: appendFileTar [file path] [name of file to be inserted] [tar path] [temp dir] ([process cmd]) - # Version: 2.0.0 + # Version: 2.0.1 # Input: arg1: path of file to be (processed and) written # arg2: name to use for file inserted into tar # arg3: tar archive path (must exist first) @@ -43,7 +43,7 @@ appendFileTar(){ # Append to tar try tar --append --directory="$tmpDir" --file="$tarPath" "$fileName"; #yell "DEBUG:STATUS:$fn:Finished appendFileTar()." -} # Append file to Tar archive +} # Append [processed] file to Tar archive #==BEGIN sample code== myTar="/tmp/$(date +%s).tar";