B*S
2 楼
如果想自己还搞点什么,下了班有时间吗?
l*9
3 楼
【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: error of couting total line number in txt file on MSDOS
发信站: BBS 未名空间站 (Thu Nov 20 18:34:45 2014, 美东)
I would like to find the total line number of a text file ( > 60 GB) in MS-
DOS.
I used:
findstr /R /N "^" file.txt | find /C ":"
But, the returned result is a negative number.
It is overflow ?
The file have not more than 5 billion lines.
For an integer (4 Bytes), its max range is From −2,147,483,648 to 2,
147,483,647.
So, I need to design a script to count the number by dividing the result
with 1000 ?
If yes, please help me with how to design the script in MS DOS.
Thanks
发信人: light009 (light009), 信区: JobHunting
标 题: error of couting total line number in txt file on MSDOS
发信站: BBS 未名空间站 (Thu Nov 20 18:34:45 2014, 美东)
I would like to find the total line number of a text file ( > 60 GB) in MS-
DOS.
I used:
findstr /R /N "^" file.txt | find /C ":"
But, the returned result is a negative number.
It is overflow ?
The file have not more than 5 billion lines.
For an integer (4 Bytes), its max range is From −2,147,483,648 to 2,
147,483,647.
So, I need to design a script to count the number by dividing the result
with 1000 ?
If yes, please help me with how to design the script in MS DOS.
Thanks
S*A
6 楼
Linux has "wc -l"
That might just work out of the box.
That might just work out of the box.
h*8
8 楼
看地方。俺上个project,每周混10+小时加班 :)
现在不让了。。。
俺是钟点工。
现在不让了。。。
俺是钟点工。
S*A
9 楼
Wc 源码在这里。
https://www.gnu.org/software/cflow/manual/html_node/Source-of-wc-command.
html
是 unsigned long。所以64位编译就是
64位的counter了。
https://www.gnu.org/software/cflow/manual/html_node/Source-of-wc-command.
html
是 unsigned long。所以64位编译就是
64位的counter了。
g*c
10 楼
本版有人联系我,$20买了一个home business,没有任何问题
l*9
12 楼
I used "wc -l" but I got a wrong number for a large file (120 GB).
The result is a positive number but it is wrong.
Any help would be appreciated.
【在 S*A 的大作中提到】
: Wc 源码在这里。
: https://www.gnu.org/software/cflow/manual/html_node/Source-of-wc-command.
: html
: 是 unsigned long。所以64位编译就是
: 64位的counter了。
The result is a positive number but it is wrong.
Any help would be appreciated.
【在 S*A 的大作中提到】
: Wc 源码在这里。
: https://www.gnu.org/software/cflow/manual/html_node/Source-of-wc-command.
: html
: 是 unsigned long。所以64位编译就是
: 64位的counter了。
w*m
14 楼
用python吧
空间O(1),时间O(n)
cnt = 0
with open('file.txt', 'r') as infile:
for _ in infile:
cnt += 1
print cnt
空间O(n), 时间O(n/k)
import pyspark
sc = pyspark.SparkContext()
infile = sc.textFile('file.txt')
print infile.count()
空间O(1),时间O(n)
cnt = 0
with open('file.txt', 'r') as infile:
for _ in infile:
cnt += 1
print cnt
空间O(n), 时间O(n/k)
import pyspark
sc = pyspark.SparkContext()
infile = sc.textFile('file.txt')
print infile.count()
t*d
15 楼
加班是因为高兴。如果不高兴加班干啥?
k*u
19 楼
看工作需要么,09年公司裁员结束后,人人主动加班。
后来招了一些新人,老油条们又犯懒了,只想支使人。
后来招了一些新人,老油条们又犯懒了,只想支使人。
l*9
20 楼
I am not allowed to install python on the server.
I can only access the file remotely. This will make the time very long for a
large file 120 GB.
【在 w********m 的大作中提到】
: 用python吧
: 空间O(1),时间O(n)
: cnt = 0
: with open('file.txt', 'r') as infile:
: for _ in infile:
: cnt += 1
: print cnt
: 空间O(n), 时间O(n/k)
: import pyspark
: sc = pyspark.SparkContext()
I can only access the file remotely. This will make the time very long for a
large file 120 GB.
【在 w********m 的大作中提到】
: 用python吧
: 空间O(1),时间O(n)
: cnt = 0
: with open('file.txt', 'r') as infile:
: for _ in infile:
: cnt += 1
: print cnt
: 空间O(n), 时间O(n/k)
: import pyspark
: sc = pyspark.SparkContext()
S*A
22 楼
cygwin 是 32 位的,64 位的只有 alpha,跑起来问题很多。
你需要用 64 位的 wc。
你可以实验一下 mingw 64 位,那个如果包含 wc
应该就是64的。
你需要用 64 位的 wc。
你可以实验一下 mingw 64 位,那个如果包含 wc
应该就是64的。
A*7
23 楼
不加,没有动力。
有时候多呆一两个小时办点私事。
有时候多呆一两个小时办点私事。
l*7
24 楼
我们公司不准下班了在家干活
相关阅读
一个印度人小公司样本数据库里的B+树为啥要用个指针把最底层的相邻叶节点连起来?该怎么推导下面算法时间复杂度O(N!*N)的*N?软软公开了C#有人用过这个Chegg.com网站来看做题的solution吗?王垠去了intel (转载)evolutionary-algorithm-outperforms-deep-learning-machines-魏老师你的瓷砖算法有人写了这是个什么概念?被keras干死了还有王法吗?Java 社区还是发展很快的牛人恒牛一窝蜂学CS让人担心出个题,怎么把这段过程式代码转换成函数式C++Forward Declaration问题四名马农被枪杀, 因为提交的代码不合格 (转载)国内一窝蜂学ai是个什么概念?李彦宏称"百度没有占便宜,有信心再赢一次"三十年,中国工业软件从欣欣向荣到溃不成军