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
|
36
|
16 ../src/readpstlog -f I dumper >dumperams.log
|
35
|
17
|
36
|
18 # touch /tmp/pam.pst
|
|
19 # ../src/readpst -o output6 -d dumper /tmp/pam.pst
|
|
20 # ../src/readpstlog -f I dumper >dumperpam.log
|
35
|
21
|
|
22 rm -f dumper
|