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 楼
我们公司不准下班了在家干活
相关阅读
Re: 请教 Python 如何去掉json文件里数字上的双引号?计划经济最终会战胜市场经济? (转载)腾讯再显霸主身份又下封杀令!有没有码工接私活的marketplace?可耻可悲的 上海交大 汉芯造假WebAssembly会改变web 生态吗?globus file transfer这个世界不合理的事太多,比如垃圾pythonC++拷贝狗仔函数多余参数的讨论Azure notebooksDNN OpenSourcevim 8.1 增加了内置的terminalNetflix电面Javascript内发出http get,现在流行什么技术?如何用perl或python实现youtube channel的批量订阅?请问这篇blog说的对么?[bssd]ML/AI:我个人一点看法请教swift4/objc master-detail app怎么把detail也弄成table?不只是VAE,我认为GAN这条路本质上也是不通的亚马逊的员工收入从2015年 (转载)