Artifact d50045d1ff23a9736a917895bef1675ff427c61b:
- Executable file utils/extract-export-list.sh — part of check-in [bbac9c3682] at 2024-02-11 19:49:03 on branch v1.90-proper-interface-lists — convert to use proper interface lists (user: matt, size: 286) [annotate] [blame] [check-ins using] [more...]
#!/bin/bash LAST_PARENT=foobar for fn in $(grep 'Warning: refer' typescript |tr '`' ' '|tr "'" " "|awk '{print $7}');do PARENT=$(grep $fn *mod.scm|grep define|cut -d: -f1) if [[ $PARENT != $LAST_PARENT ]];then echo echo $PARENT LAST_PARENT=$PARENT fi echo $fn done