mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
29 lines
569 B
Bash
Executable file
29 lines
569 B
Bash
Executable file
#!/bin/sh
|
|
|
|
awk '
|
|
/^module/{
|
|
m=1
|
|
split($2,narr,"(")
|
|
module=narr[1]"()"
|
|
}
|
|
/^function/{
|
|
m=0
|
|
module=""
|
|
}
|
|
/[^=] *assert\(/{
|
|
if(m) {
|
|
if(fname!=FILENAME) {
|
|
fname=FILENAME
|
|
print "File",fname
|
|
}
|
|
if(prevmodule!=module) {
|
|
prevmodule=module
|
|
print " Module",module
|
|
}
|
|
assertline=$0
|
|
sub(/^ */, "", assertline)
|
|
print " ",FNR,":",assertline
|
|
}
|
|
}
|
|
' *.scad
|
|
|