counts


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers counts
# 1  
Old 06-08-2005
counts

How can i do a simple record count in my shell script? i just want to count the number of records i receive from a specific file.
# 2  
Old 06-08-2005
Quote:
Originally Posted by k@ssidy
How can i do a simple record count in my shell script? i just want to count the number of records i receive from a specific file.
what's your definition of a 'record'?
# 3  
Old 06-08-2005
it's just name, car, start, and finish for each record, i've read everywhere about how to count characters/words/lines with wc but nothing about counting records, i guess technically they could be considered separate files even. in any case, i just need to do a simple count when the files are done to have a number on record.
# 4  
Old 06-08-2005
once again what is a record?

A single line with multiple fields?
A block of lines, one field for line?
Some combo of the above?

A sample file could be helpful......
# 5  
Old 06-08-2005
a single line with multiple fields, like:

name car start finish <- these are the fields

bob 3:16 17 13 <- this line is one record

is this what you were looking for?
# 6  
Old 06-08-2005
Quote:
Originally Posted by k@ssidy
a single line with multiple fields, like:

name car start finish <- these are the fields

bob 3:16 17 13 <- this line is one record

is this what you were looking for?
so doing 'wc -l < fileName' would count the number of lines/records
# 7  
Old 06-08-2005
ok, i was a little confused over that, not knowing if they were the same but then how would i do a count of files received (each file being made up of a block of lines)?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Avoiding new line for the counts

Hi Team, Am getting the below output but need the count of records to be displayed in same line but currently count alone moves to next line. Please let me know how we can still keep the count in the same line. ######code ##### while read YEAR; do for i in TEST_*PGYR${YEAR}_${DT}.csv; do... (3 Replies)
Discussion started by: weknowd
3 Replies

2. Shell Programming and Scripting

Counts not matching in file

I can not figure out why there are 56,548 unique entries in test.bed. However, perl and awk see only 56,543 and that # is what my analysis see's as well. What happened to the 5 missing? Thank you :). The file is attached as well. cmccabe@DTV-A5211QLM:~/Desktop/NGS/bed/bedtools$wc -l... (2 Replies)
Discussion started by: cmccabe
2 Replies

3. UNIX for Dummies Questions & Answers

Get counts from List

This is very easy , but I`m struggling .. please help modify my script, I want to count the number of h and n , from the second column group by the first. The second column is binary, can only have h and n. a h a h a n a n a h b h b h b h b h b h c n c h c h c h c h (2 Replies)
Discussion started by: jianp83
2 Replies

4. Shell Programming and Scripting

counts for every 1000 interval

Hi, I have a file with 4 million rows. Each row has certain number ranging between 1 to 30733090. What I want is to count the rows between each 1000 intervals. 1-1000 4000 1001-2000 2469 ... ... ... ... last 1000 interval Thanks, (7 Replies)
Discussion started by: Diya123
7 Replies

5. Shell Programming and Scripting

Counts based on occurances

Hi, I have a file with 2500 entries. There are many duplicates,triplicates symbols in my file in the first column and the second column has categories(high/medium/low) . I want to have count for the occurances of each category for each unique symbol ABC high ABC high ABC medium ABC ... (2 Replies)
Discussion started by: Diya123
2 Replies

6. Shell Programming and Scripting

counts based on percentage

I have a file with multiple entries and I have calculated the percentages. Now I want to know how many of my entries are there between 1-10% 11-20% and so on.. chr1_14401_14450 0.211954217888936 chr1_14451_14500 1.90758796100042 chr1_14501_14550 4.02713013988978 chr1_14551_14600 ... (3 Replies)
Discussion started by: Diya123
3 Replies

7. Shell Programming and Scripting

Get counts for multiple files

How do get the counts by excluding header and tailer. wc -l customer_data*.0826 31 customer_data_1.0826 57 customer_data_2.0826 456 customer_data_3.0826 668 customer_data_4.0826 789 customer_data_5.0826 2344 customer_data_6.0826 13457 customer_data_7.0826... (6 Replies)
Discussion started by: zooby
6 Replies

8. UNIX for Dummies Questions & Answers

wc -c counts 1 char more per line

Hi, this might be a basic question... why is that wc -c counts 1 more per line than what is there. for example, > cat dum1.txt 123 12 > wc -c dum1.txt 7 dum1.txt Thanks, Sameer. (4 Replies)
Discussion started by: ensameer
4 Replies

9. UNIX for Dummies Questions & Answers

counts

To start I have a table that has ticketholders. Each ticket holder has a unique number and each ticket holder is associated to a so called household number. You can have multiple guests w/i a household. I would like to create 3 flags (form a, for a household that has 1-4 gst) form b 5-8 gsts... (3 Replies)
Discussion started by: sbr262
3 Replies
Login or Register to Ask a Question