Artifact a5fa0df8c9cd10c495cf246017eea9af3f1e55b6:
- Executable file utils/gen-list-of-functions.sh — part of check-in [b28d552c97] at 2019-02-04 23:07:02 on branch v1.65-multi-db — yada (user: matt, size: 144) [annotate] [blame] [check-ins using]
#!/bin/bash # extract a list of functions from a .scm file INFILE=$1 grep -E '^\(define\s+\(' $INFILE|cut -f3 -d\(|tr ')' ' '|cut -f1 -d' '