Listing BlitzMax module dependencies
The following snippet will list all modules that a source file (or files) depend on. Replace <SOURCE FILE>
with a file name or directory to search:
grep --include="*.bmx" -hri "^import [^\"]" <SOURCE FILE> |
sort |
uniq |
sed 's/[Ii]mport //g'
This will give output something like the following:
brl.linkedlist
brl.map
brl.reflection
brl.retro
sodaware.blitzmax_array
sodaware.blitzmax_ascii
sodaware.file_fnmatch
The snippet is broken into a couple of parts:
grep --include="*.bmx" -hri "^import [^\"]" <SOURCE FILE>
--include="*.bmx*"
Instructs grep to search onlybmx
files.-h
Removes the file name from results-r
is a recursive search-i
ignores case"^import [^\"]"
will search for lines that start with “import” that are not followed by a"
character (i.e. a file import).
sort
- Sorts lines A to Zuniq
- Removes duplicate lines from the resultssed 's/[Ii]mport//g'
strips the startingImport
.