Redian新闻
>
error of couting total line number in txt file on MSDOS (转载)
avatar
B*S
2
如果想自己还搞点什么,下了班有时间吗?
avatar
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
avatar
a9
4
ny state不是免费吗?

【在 g*c 的大作中提到】
: 谢谢
avatar
B*S
5
为什么大家都作无语状?
加班加得连码字都码不动了?

【在 B****S 的大作中提到】
: 如果想自己还搞点什么,下了班有时间吗?
avatar
S*A
6
Linux has "wc -l"
That might just work out of the box.
avatar
g*c
7

查了一下,可以share的,正版可以在多个电脑上装
只要file的人不超过5个就可以
有意请报价,我可以paypal给你,你把安装文件发给我
谢谢

【在 a9 的大作中提到】
: ny state不是免费吗?
avatar
h*8
8
看地方。俺上个project,每周混10+小时加班 :)
现在不让了。。。
俺是钟点工。
avatar
g*c
10
本版有人联系我,$20买了一个home business,没有任何问题
avatar
B*S
11


【在 h********8 的大作中提到】
: 看地方。俺上个project,每周混10+小时加班 :)
: 现在不让了。。。
: 俺是钟点工。

avatar
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了。

avatar
b*c
13
一般不加班,又不多给钱。

【在 B****S 的大作中提到】
: 如果想自己还搞点什么,下了班有时间吗?
avatar
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()
avatar
t*d
15
加班是因为高兴。如果不高兴加班干啥?
avatar
n*t
16
怎么个错法?是不是超过 2^16?

【在 l******9 的大作中提到】
: 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.

avatar
n*d
17
为啥要加班

【在 B****S 的大作中提到】
: 如果想自己还搞点什么,下了班有时间吗?
avatar
l*9
18
I am not sure,
I used cygwin to access the server where the file is located by SSH.
Then, I ran "wc -l" to get the wrong number, but it is not overflow because
it is positive not negative.

【在 n*****t 的大作中提到】
: 怎么个错法?是不是超过 2^16?
avatar
k*u
19
看工作需要么,09年公司裁员结束后,人人主动加班。
后来招了一些新人,老油条们又犯懒了,只想支使人。
avatar
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()

avatar
r*0
21
加班! 我刚才还在加班.现在快凌晨4点.
一年平均加班>20%, 没加班费的那种.

【在 B****S 的大作中提到】
: 如果想自己还搞点什么,下了班有时间吗?
avatar
S*A
22
cygwin 是 32 位的,64 位的只有 alpha,跑起来问题很多。
你需要用 64 位的 wc。
你可以实验一下 mingw 64 位,那个如果包含 wc
应该就是64的。
avatar
A*7
23
不加,没有动力。
有时候多呆一两个小时办点私事。
avatar
l*7
24
我们公司不准下班了在家干活
avatar
k*u
25
BSO是高级工。

【在 r*****0 的大作中提到】
: 加班! 我刚才还在加班.现在快凌晨4点.
: 一年平均加班>20%, 没加班费的那种.

avatar
b*c
26
我们刚来个新老板,要求我们每周至少上40小时的班,搞得我们郁闷死了。以前老板不
管,活干好了就行。新老板来了一周了,大家晚上都挨到6点才走,我家娃儿们已经改
由娃他爸接送了,以保证我的坐班时间。唉,我现在8:45am-6pm,理论上好像不算太过
分,但感觉不好,觉得离加班不远了。

【在 B****S 的大作中提到】
: 如果想自己还搞点什么,下了班有时间吗?
avatar
v*n
27
我记得你是亚麻的

【在 b*******c 的大作中提到】
: 我们刚来个新老板,要求我们每周至少上40小时的班,搞得我们郁闷死了。以前老板不
: 管,活干好了就行。新老板来了一周了,大家晚上都挨到6点才走,我家娃儿们已经改
: 由娃他爸接送了,以保证我的坐班时间。唉,我现在8:45am-6pm,理论上好像不算太过
: 分,但感觉不好,觉得离加班不远了。

avatar
h*y
28
“至少上40小时”, 怎么会有这么变态的要求...这个符合你们公司的政策吗?

【在 b*******c 的大作中提到】
: 我们刚来个新老板,要求我们每周至少上40小时的班,搞得我们郁闷死了。以前老板不
: 管,活干好了就行。新老板来了一周了,大家晚上都挨到6点才走,我家娃儿们已经改
: 由娃他爸接送了,以保证我的坐班时间。唉,我现在8:45am-6pm,理论上好像不算太过
: 分,但感觉不好,觉得离加班不远了。

avatar
b*c
29
我不是那行的,你记错人了。

【在 v***n 的大作中提到】
: 我记得你是亚麻的
avatar
b*c
30
人家说要保证40小时上班时间,好像挑不出理。问题是我们以前习惯不忙的时候迟到早
退,忙的时候在家赶活了,现在不忙也不能偷懒了。公司估计不管,我们都是年薪的,
不讲小时数。不过下周我打算9-5:30了,不和大家耗了,回家晚了的话,晚饭就往后
推了,孩子们睡的也会晚。唉,不管了。

【在 h*******y 的大作中提到】
: “至少上40小时”, 怎么会有这么变态的要求...这个符合你们公司的政策吗?
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。