35
|
1 #!/bin/bash
|
|
2
|
|
3 for i in {1..6}; do
|
|
4 rm -rf output$i
|
|
5 mkdir output$i
|
|
6 done
|
|
7
|
|
8 # ../src/pst2ldif -b 'o=ams-cc.com, c=US' -c 'newPerson' ams.pst >ams.err
|
|
9 # ../src/readpst -cv -o output1 ams.pst
|
|
10 # ../src/readpst -cl -r -o output2 ams.pst
|
|
11 # ../src/readpst -S -o output3 ams.pst
|
|
12 # ../src/readpst -M -o output4 ams.pst
|
|
13 # ../src/readpst -o output5 mbmg.archive.pst
|
|
14
|
|
15 ../src/readpst -o output1 -d dumper ams.pst
|
|
16 ../src/readpstlog dumper >dumperams.log
|
|
17
|
|
18 ../src/readpst -o output6 -d dumper /tmp/pam.pst
|
|
19 ../src/readpstlog dumper >dumperpam.log
|
|
20
|
|
21 rm -f dumper
|