shellgo version XXX
shellgo version -m XXX
shellstrings XXX | grep -E '^/.+\.go\>' | sort | uniq -u > go_src_files.txt
# 过滤掉Go自带库
strings XXX | grep -E '^/.+\.go\>' | grep -v '/usr/local/go/src/' | sort > go_src_files.txt
shellstrings XXX | grep -E '^包名' | sort | uniq -u > go_package_methods.txt
shellredress -compiler -pkg -unknown -vendor -std runtool > go_info.txt redress -src runtool > go_src.txt redress -type runtool > go_type.txt redress -struct runtool > go_struct.txt redress -method runtool > go_method.txt redress -interface runtool > go_interface.txt
本文作者:菜鸟
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 许可协议。转载请注明出处!