Pring starting and ending numbers using UNIX


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Pring starting and ending numbers using UNIX
# 1  
Old 09-15-2013
Sun Pring starting and ending numbers using UNIX

Hi all,

I need to do scrip for printing starting and ending numbers along with count in given file.Smilie

Input: a.txt

Code:
10000030
10000029
10000028
10000027
10000026
10000024
10000023
10000021
10000018
10000018
10000017
10000016
10000015
10000014
10000013
10000011
10000010
10000009
10000008
10000006
10000005
10000004
10000003
10000002
10000001

Output needed : out.txt

Code:
starting,Ending,count

10000001,10000006,6
10000008,10000011,4
10000013,10000019,7
10000021,10000021,1
10000023,10000024,2
10000026,10000030,5

Plz help me to solve this scripSmilieSmilieSmilieSmilieSmilieSmilieSmilieSmilieSmilie

Last edited by Scrutinizer; 09-15-2013 at 03:00 PM.. Reason: code tags
# 2  
Old 09-15-2013
Is this a homework assignment?
If it isn't homework, what is the reason for needing to do this?

In this sample, the input is in reverse sorted numeric order. Will that always be true with your input data?

Will the input always only be 8 digit numbers?
# 3  
Old 09-16-2013
Hi Don,

Thanks for your reply...

Yes this is for my UNIX class work. my teacher ask me to do some scripts.so i try this but i struck....

Input will not be arranged as above it be in any kind of order and we ll use sort command to sort in wanted format..

No, my input digit is up to 0 to 12 digits some time..
Moderator's Comments:
Mod Comment Homework can only be posted in the Homework & Coursework Questions Forum and must include your full school name, professor, and course number. Please refile this request in the Homework & Coursework Questions Forum.

Last edited by Don Cragun; 09-16-2013 at 11:50 AM.. Reason: Homework violation.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Search for words starting and ending with

im trying to search for a WORD in a file which begins with a number followed by a hypen follwed multiple words and end with a dot "." and pront the entire line which matches the above. Please note that there is a space at the begining of each line i/p file 19458 00000-CONTROL-PARA.... (5 Replies)
Discussion started by: anijan
5 Replies

2. Shell Programming and Scripting

Text to column starting/ending with special character in each row

Hello, Here is my text data excerpted from the webpage: input My target is to get: What i tried is: sed 's/.*\(connector\)/1/' input > output but all characters coming before the word "connector" are deleted which is not good for me. My question: (9 Replies)
Discussion started by: baris35
9 Replies

3. Shell Programming and Scripting

Remove '.' from file for numbers ending in '.'

Hi, I have numerous files which have data in the following format A|B|123.|Mr.|45.66|33|zz L|16.|33.45|AC.|45. I want to remove decimal point only if it is last character in a number. O/p should be A|B|123|Mr.|45.66|33|zz L|16|33.45|AC.|45 I tried this sed -e 's/.|/|/g' Problem... (6 Replies)
Discussion started by: wahi80
6 Replies

4. Shell Programming and Scripting

Extract specific line in an html file starting and ending with specific pattern to a text file

Hi This is my first post and I'm just a beginner. So please be nice to me. I have a couple of html files where a pattern beginning with "http://www.site.com" and ending with "/resource.dat" is present on every 241st line. How do I extract this to a new text file? I have tried sed -n 241,241p... (13 Replies)
Discussion started by: dejavo
13 Replies

5. UNIX for Dummies Questions & Answers

Sorting files ending in numbers with "sort"

I have a group of files that I need to be sorted by number. I have tried to use the sort command without any luck. ls includes* includes1 includes10 includes11 includes12 includes2 includes3 includes4 includes5 includes6 includes7 includes8 includes9 I have tried ls includes*... (6 Replies)
Discussion started by: newbie2010
6 Replies

6. Shell Programming and Scripting

if statement to check files with different ending but same starting name

I am trying to check if files staring with filename but ending with diffent dates e.g. filename.2011-10-25. The code I am using is below if It works find only if one file is present but returns binary operator expected when there are mulptiple files. Please help me correcting it. I... (5 Replies)
Discussion started by: ningy
5 Replies

7. Shell Programming and Scripting

Help in retrieving the ending line numbers of the functions

Hi! I've a C file which consist of many function definitions with numbers at the beginning as shown below.. 10 void search() 11 { 12 /*body 14 * 15 * 17 * 18 * 40 * 42 * 60 } 90 void func_name() 95 { 99 /*body 100 * 105 * 111 * (7 Replies)
Discussion started by: abk07
7 Replies

8. Shell Programming and Scripting

Deleting lines not starting with numbers with sed

Title says all :p Thanks for your help (4 Replies)
Discussion started by: drbiloukos
4 Replies

9. Shell Programming and Scripting

perl: reg.expr: combine starting and ending removal in one exprecion

Hello, I am new in perl and in regular exprecion; so I am looking for help (or an experienced advise.) The target is a triming spaces from a string: i.e., remove spases from begining and from end of a string. One of main point of a searched solution is performance: for current task it is... (2 Replies)
Discussion started by: alex_5161
2 Replies

10. Programming

After executing a exe file, gdb pring many 'VT102', what does this mean?

(gdb)... (1 Reply)
Discussion started by: cdbug
1 Replies
Login or Register to Ask a Question