mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
8 lines
335 B
Bash
Executable file
8 lines
335 B
Bash
Executable file
#!/bin/bash
|
|
# Generate a sorted list of functions/variables from the API documentation.
|
|
API=api-index.txt
|
|
TMP=/tmp/api-index.txt
|
|
cyclone scripts/generate-doc-index.scm
|
|
grep -r "^- \[" docs/api/scheme/* | ./scripts/generate-doc-index | sort > $TMP
|
|
grep -r "^- \[" docs/api/srfi/* | ./scripts/generate-doc-index >> $TMP
|
|
sort $TMP > $API
|