extract_wiki_comments.sh 501 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/env bash
  2. for i in \
  3. if.h \
  4. for.h \
  5. complete.h \
  6. retro.h \
  7. compare.h \
  8. print.h \
  9. timeline.h \
  10. localize.h \
  11. filter.h \
  12. convert.h \
  13. make.h \
  14. evaluator.h \
  15. tag_value.h \
  16. explicit_geometry.h \
  17. aggregators.h \
  18. unary_operators.h \
  19. binary_operators.h \
  20. ternary_operator.h \
  21. string_endomorphisms.h \
  22. geometry_endomorphisms.h \
  23. set_list_operators.h \
  24. runtime_value.h \
  25. ; do
  26. cat ../src/overpass_api/statements/$i | awk -f extract_wiki_comments.awk
  27. done