Tagged Questions

`wc` is a standard POSIX command that counts words, lines, and characters.

learn more… | top users | synonyms

19
votes
7answers
14k views

How do you use cat recursively?

Suppose I want to count the lines of code in a project. If all of the files are in the same directory I can execute: cat * | wc -l However, if there are sub-directories, this doesn't work. For this ...
13
votes
6answers
372 views

How to count lines fast?

I tried unxutils' wc -l but it crashed for 1GB files. I tried this C# code long count = 0; using (StreamReader r = new StreamReader(f)) { string line; while ((line = r.ReadLine()) != null) ...
5
votes
6answers
116 views

results of wc as variables

I would like to use the lines coming from 'wc' as variables. For example: echo 'foo bar' > file.txt echo 'blah blah blah' >> file.txt wc file.txt 2 5 23 file.txt I would like to have ...
5
votes
8answers
3k views

Use find, wc, and sed to count lines

I was trying to use sed to count all the lines based on a particular extension. find -name '*.m' -exec wc -l {} \; | sed ... I was trying to do the following, how would I include sed in this ...
3
votes
1answer
135 views

How do I tell wc to stop reading?

I have a program that fork()s a new process and then overwrites that new process's stdin with my file descriptor pipe fd. In this process, I then use execvp() to execute wc and it should read its ...
3
votes
1answer
108 views

File Output From C Program Behaving Strangely When Counting Lines

I am using C to parse a large flat file and output relevant lines into an output file. The output file should be around 70,000 lines. If I open the file in gedit, it displays exactly as expected, ...
2
votes
2answers
97 views

Why does the ouptut of wc -l differs if executed in backticks?

I just encountered that the output of wc -l differs when called directly or enclosed in backticks. For example: pgrep bash | wc -l would output 1, as there is one bash process running. But ...
2
votes
3answers
303 views

UNIX wc -l with line length restriction

I need to count the number of lines in a file, in a UNIX shell script, but I need the number of lines under 80 characters, and if there are more than 80 characters, count it as multiple lines. I know ...
1
vote
2answers
35 views

How count the number of lines of a file group?

I want to count the number of lines that have all the log files in a specified month. So far I get those files with the following command. ls localhost_access_log.[0-9][0-9]-11-11* An example of ...
1
vote
3answers
106 views

Bash: Find file with max lines count

This is my try to do it Find all *.java files find . -name '*.java' Count lines wc -l Delete last line sed '$d' Use AWK to find max lines-count in wc output awk 'max=="" || data=="" || $1 > max ...
1
vote
3answers
143 views

trying to count the charcters in a line in perl and failed

At the beginning I simply used the following to count the length of each line: while(<FH>){ chomp; $length=length($_); } but when I compared the result I got with the one produced by ...
1
vote
1answer
210 views

Insecure $ENV{ENV} while running with -T switch

When I try the last example from perlfaq5: How-do-I-count-the-number-of-lines-in-a-file? I get an error-message. What should I do to get the script working? #!/usr/local/bin/perl -T use warnings; ...
1
vote
4answers
1k views

get just the integer from wc in bash

Is there a way to get the integer that wc returns in bash? Basically I want to write the line numbers and word counts to the screen after the file name. output: filename linecount wordcount Here is ...
0
votes
1answer
38 views

Number of lines from a gzip file (AIX)

How to count the number of lines in a gzip file? wc -l can be used to get the number of lines from a normal file but what if it is a .gz file ??
0
votes
3answers
69 views

How can I compare 3 files together (to see what is in common between them)?

I want to compare 3 files together to see how much of the information in the files are the same. The file format is something like this: Chr11 447 . A C 74 . ...
0
votes
2answers
66 views

BASH while line numbers in file is smaller than x

i want to make a loop that reads some files and i want it to stop when wc output is smaller than 5 in this case the file "file" contains the names of the files that will be worked on for i in `cat ...
0
votes
0answers
77 views

REST WCF and WebRequest client cache policy

I have one problem with client http cache. I am develop wcf rest service with windows authentication. I need use client http cache. When i set Cache policy to use local cache i have Unauthorized ...
0
votes
2answers
309 views

linux command wc output format

I need to write a perl that mimic linux command wc exactly(including and especially output format), while having realized the functionality, the output of wc is really a headache, it seems that it is ...
0
votes
6answers
257 views

bash obtain wc -l number and display in one command?

I'm pretty sure this is going to be obvious, but currently im doing this: count=`find $dir -type f \( -perm -007 \) -print 2>/dev/null | wc -l` This gets me the number i want, but dosen't ...
0
votes
4answers
186 views

UNIX: Physical Location of “wc” command. It ain't “/bin”

This has be stump. I wrote a shell program in C that allows the user to execute several commands. Based on my research so far, all the commands such as "ls" and "cat" are located in "/bin/". The ...
0
votes
1answer
153 views

How can I count all of the lines in all of the files in the current directory and child directories?

I'm trying to figure out how many lines of code have been written for an app. Code is in the current directory and child directories. I'm using ubuntu.
0
votes
2answers
249 views

new svn server, same ip

Here is my problem: My server crashed last night! So i had to go out and buy some new stuff and i now have a new server. I have everything set back up and i am trying to set my svn server back up. I ...
0
votes
3answers
81 views

Calling linux utilities with options from within a Bash script

This is my first Bash script so forgive me if this question is trivial. I need to count the number of files within a specified directory $HOME/.junk. I thought this would be simple and assumed the ...