File tree 1 file changed +22
-1
lines changed
1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 1
- // A simple implementation of the ldifdiff library
1
+ //Compare two LDIF files and output the differences as a valid LDIF.
2
+ //Bugs to https://github.com/nxadm/ldifdiff.
3
+ //
4
+ // _ _ _ _ _ _ _ _
5
+ // _-(_)- _-(_)- _-(_)- _-(")- _-(_)- _-(_)- _-(_)- _-(_)-
6
+ //*(___) *(___) *(___) *%%%%% *(___) *(___) *(___) *(___)
7
+ // // \\ // \\ // \\ // \\ // \\ // \\ // \\ // \\
8
+ //
9
+ //Usage:
10
+ //ldifdiff <source> <target> [-i <attributes> ...] [-d]
11
+ //ldifdiff -h
12
+ //ldifdiff -v
13
+ //Options:
14
+ //-d, --dn
15
+ // Only print DNs instead of a full LDIF.
16
+ //-i <attributes>, --ignore <attributes>
17
+ // Comma separated attribute list.
18
+ // Multiple instances of this switch are allowed.
19
+ //-h, --help
20
+ // Show this screen.
21
+ //-v, --version
22
+ // Show version
2
23
package main
3
24
4
25
import (
You can’t perform that action at this time.
0 commit comments