由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - how to get the total numbers of lines of a java project
相关主题
C++中parse string的问题请教一个parser的问题
windows 7 automation tool for newbie: bat, cygwin or pythonmatlab: find main workspace variable?
你们为啥要用cygwin?Re: matlab: find main workspace variable
[合集] 被perl雷到了,sed, awk, cygwin, native以及其他python, pickle
How to Parsing function in haskell?有人有在visual c6 里面删掉一个类的经验么?
parsing bibliography and sorting (转载)Visual Studio的使用问题(C++)
问java api的问题MatLab Code
parsing file in node: js or python ?请教一个QT的问题
相关话题的讨论汇总
话题: project话题: lines话题: java话题: total话题: get
进入Programming版参与讨论
1 (共1页)
c********2
发帖数: 56
1
For example, there is an existing java project in eclipse workspace. How
to parse the project to get a total number of lines of the code?
g**e
发帖数: 6127
2
find . -name \*.java |xargs cat|wc -l

【在 c********2 的大作中提到】
: For example, there is an existing java project in eclipse workspace. How
: to parse the project to get a total number of lines of the code?

c********2
发帖数: 56
3

thanks for the reply, but what if this is a windows system, for example,
windows eclipse ide

【在 g**e 的大作中提到】
: find . -name \*.java |xargs cat|wc -l
g*****g
发帖数: 34805
4
Install cygwin and count it the same way.

【在 c********2 的大作中提到】
:
: thanks for the reply, but what if this is a windows system, for example,
: windows eclipse ide

k***e
发帖数: 7933
5
no need install cygwin, lots of linux tools have windown version

【在 g*****g 的大作中提到】
: Install cygwin and count it the same way.
e****d
发帖数: 895
6
or use powershell.

【在 k***e 的大作中提到】
: no need install cygwin, lots of linux tools have windown version
1 (共1页)
进入Programming版参与讨论
相关主题
请教一个QT的问题How to Parsing function in haskell?
python的shellparsing bibliography and sorting (转载)
Simple Question About Eclipse问java api的问题
新手请教一个Eclipse写c++program的问题。parsing file in node: js or python ?
C++中parse string的问题请教一个parser的问题
windows 7 automation tool for newbie: bat, cygwin or pythonmatlab: find main workspace variable?
你们为啥要用cygwin?Re: matlab: find main workspace variable
[合集] 被perl雷到了,sed, awk, cygwin, native以及其他python, pickle
相关话题的讨论汇总
话题: project话题: lines话题: java话题: total话题: get