File: cif_diff_001.sh

package info (click to toggle)
cod-tools 3.11.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 159,136 kB
  • sloc: perl: 58,707; sh: 41,323; ansic: 7,268; xml: 1,982; yacc: 1,117; makefile: 731; python: 166
file content (15 lines) | stat: -rwxr-xr-x 573 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

#BEGIN DEPEND------------------------------------------------------------------
INPUT_SCRIPT=scripts/cif_diff
#END DEPEND--------------------------------------------------------------------

${INPUT_SCRIPT} --compare-numeric _tag \
    <(echo 'data_A1 _tag 123(4)') <(echo 'data_B1 _tag 100(5)')

${INPUT_SCRIPT} --compare-numeric _tag \
    <(echo 'data_A2 _tag 123(4)') <(echo 'data_B2 _tag 120(4)')

${INPUT_SCRIPT} --compare-numeric _tag \
    <(echo 'data_A3 loop_ _tag 10(2) 10(2) 12(3) 10(1)') \
    <(echo 'data_B3 loop_ _tag 10(2) 11(2) 12(3) 20(1)')