mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-14 16:27:35 +02:00
WIP
This commit is contained in:
parent
61ee3df0c2
commit
b09db61400
1 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Work in progress, doesn't do anything useful yet
|
# Generate a sorted list of functions/variables from the API documentation.
|
||||||
grep -r "^- \[" docs/api/scheme/*
|
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
|
||||||
|
|
Loading…
Add table
Reference in a new issue