83. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/20/2017 5:56:07 PM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

83.1 Files compared

# Location File Last Modified
1 Genisis_2.0_v6_bld6.zip\Source Code\UI\DataOps\documentation databaseTableCopyDoc.docx Thu Dec 14 19:56:15 2017 UTC
2 Genisis_2.0_v6_bld6.zip\Source Code\UI\DataOps\documentation databaseTableCopyDoc.docx Wed Dec 20 22:39:11 2017 UTC

83.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 42
Changed 1 2
Inserted 0 0
Removed 0 0

83.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

83.4 Active regular expressions

No regular expressions were active.

83.5 Comparison detail

  1   databaseTa bleCopy Do cumentatio n
  2  
  3   The name o f the the  jar and th e shell sc ript are d atabaseTab leCopy.jar  and datab aseTableCo py.sh resp ectively.
  4   The shell  script cal ls the jar , stores t he output  as a varia ble, and e choes the  jar output  to the co mmand line  to be rea d.
  5  
  6   This is th e command  to call th e shell sc ript:
  7  
  8   sh databas eTableCopy .sh Source IP Destina tionIP ‘De stination :PORT  ‘Destinat ion : P ORT  ‘TableNam es’
  9  
  10   The argume nts with s ingle quot es around  them are s trings tha t need to  have singl e quotes a dded to th e string b efore the  shell scri pt is call ed 
  11  
  12   The order  of the var iables is  noted abov e.
  13  
  14   This is th e shell sc ript to ca ll the jar  file:
  15  
  16   #!/bin/bas h
  17   the_output =$(java -j ar databas eTableCopy .jar $1 $2  $3 $4 $5)
  18   echo $the_ output
  19  
  20   If the jar  is in a d ifferent d irectory t han shell  script, th en change  the script  to reflec t the file  path to t he jar. 
  21   i.e. the_o utput=$(ja va -jar /f ile/path/t o/database TableCopy. jar $1 $2  $3 $4 $5)
  22   The variab les $1-$5  are the va riables th at were pa ssed to th e shell sc ript that  passes the m to the j ar.