File: show.sh

package info (click to toggle)
libooc-xml 3.0-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 10,880 kB
  • ctags: 360
  • sloc: xml: 10,312; ansic: 1,681; sh: 798; makefile: 301; perl: 17
file content (12 lines) | stat: -rwxr-xr-x 336 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
for i in ibm/not-wf/*/*.xml; do
    echo "[$i]"
    cat "$i"
    echo
    echo "--------------------------------------------------------------------"
    j="`echo "$i"|sed -e 's:^ibm/:reference/:'`".err
    echo "[$j]"
    cat "$j"
    echo
    echo "####################################################################"
done