home
/
code
/
khome.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
763a190
)
Report total calls made
author
Siraaj Khandkar
<siraaj@khandkar.net>
Wed, 3 Mar 2021 16:07:10 +0000
(11:07 -0500)
committer
Siraaj Khandkar
<siraaj@khandkar.net>
Wed, 3 Mar 2021 16:07:10 +0000
(11:07 -0500)
home/bin/erlcode-find-calls
patch
|
blob
|
blame
|
history
diff --git
a/home/bin/erlcode-find-calls
b/home/bin/erlcode-find-calls
index
46f5d35
..
0fb49c9
100755
(executable)
--- a/
home/bin/erlcode-find-calls
+++ b/
home/bin/erlcode-find-calls
@@
-41,13
+41,13
@@
find $dirs -type f -name '*.erl' -exec grep -Hn "\<$target_module\>:" '{}' \; \
for (cf in Calls_from) {
split(cf, call, SUBSEP);
if (call[1] == caller_module_file)
- printf "%s%s
\n", indent indent, call[2
] | "sort";
+ printf "%s%s
%d\n", indent indent, call[2], Calls_from[cf
] | "sort";
}
close("sort")
}
print "all"
for (called_function in Calls)
- printf "%s%s
\n", indent, called_function
| "sort"
+ printf "%s%s
%d\n", indent, called_function, Calls[called_function]
| "sort"
close("sort")
}'
This page took
0.026732 seconds
and
4
git commands to generate.