Doubt how many lines of code you have written? If you don’t have an existing tool to do this, you can make use of linux command based tools to achieve this: wc -l `find ./ -type f` This command will show the lines of programming code under current directory, inclusive.
↧