You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
446 B
13 lines
446 B
15 years ago
|
#!/bin/sh
|
||
|
|
||
|
list_keywords=./list-keywords-ldif.awk
|
||
|
schemas="$@"
|
||
|
|
||
|
echo " <list name=\"attributetypes\">"
|
||
|
cat $schemas | $list_keywords | grep "attributetype" | grep -v '^#' | sed -e "s/'//g" | sort -u | awk '{print " <item>"$2"</item>"}'
|
||
|
echo " </list>"
|
||
|
echo " <list name=\"objectclasses\">"
|
||
|
cat $schemas | $list_keywords | grep "objectclass" | grep -v '^#' | sed -e "s/'//g" | sort -u | awk '{print " <item>"$2"</item>"}'
|
||
|
echo " </list>"
|
||
|
|