Skip to content

Commit c54d982

Browse files
committed
add godoc to cmd (test)
1 parent 97856d6 commit c54d982

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

cmd/ldifdiff.go

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
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
223
package main
324

425
import (

0 commit comments

Comments
 (0)