; a test script for FpcLib

dir     		; list and save all .fpl file names

; run a foreach block

f
l $  *      ; list each file in turn
e

del *       ; empty the current lib

; run another block to collect footprints

f
a $ DIP*
a $ Dip*
a $ dip*
e

l       ; list the results

end         ; end script without terminating fpclib

quit        ; terminate fpclib

