Created
April 8, 2016 06:24
-
-
Save patricksuo/8300abd7b2f08442c0dcbeadc09acf49 to your computer and use it in GitHub Desktop.
cscope helper script for golang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
find $PWD -name '*.go' -exec echo \"{}\" \; | sort -u > cscope.files | |
#cscope -bvq | |
cscope -b |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment