X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2020-03.git/blobdiff_plain/3621642d7b74e08f23d4d1958d5c0cbe362f8cad..b2fc770c0dc241d3e7bdf409f443a9fbeb5fe141:/unitproc/bktemp-appendFileTar 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";