Deleting First 10 letters in a line


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Deleting First 10 letters in a line
# 1  
Old 06-23-2008
Deleting First 10 letters in a line

Hi,

Could any one of you let me know any simple Unix command for deleting first 10 letters of first line in unix?

Eg: 123456789ABC --Input

ABC--Output

Thanks

Sue
# 2  
Old 06-23-2008
Java

Quote:
Originally Posted by pyaranoid
Could any one of you let me know any simple Unix command for deleting first 10 letters of first line in unix?

Eg: 123456789ABC --Input

ABC--Output
You mean CB? (1-9 is 9 chars, not 10)
Code:
echo "123456789ABC" | sed 's/^..........//'

# 3  
Old 06-24-2008
Hi,

Thank you. It worked when i use the code provided by you. Suppose if i need to use that code for a file and if i want to replace the input file with the first 10 letters removed, how can i do that?

Thanks

Sue
# 4  
Old 06-24-2008
Code:
sed 's/^..........//' inputfile > newfile

# 5  
Old 06-25-2008
Hi,

If i do like that, i am getting an output file with 0 bytes.Smilie

Please adivice me what can be done to resolve this.

Thanks

Sue
# 6  
Old 06-25-2008
Quote:
Originally Posted by Smiling Dragon
Code:
echo "123456789ABC" | sed 's/^..........//'

Hmm, but that is not very flexible, imagine the next problem being to remove the first 43 characters. How about:
Code:
echo "123456789ABC" | cut -c11-

# 7  
Old 06-27-2008
Hi,

The following command gave me the correct results:

cut -c39- In_Put.txt > Out_Put.txt


Thanks Once again,

Sue

Last edited by pyaranoid; 06-27-2008 at 12:04 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Deleting double quoted string from a line when line number is variable

I need to remove double quoted strings from specific lines in a file. The specific line numbers are a variable. For example, line 5 of the file contains A B C "string" I want to remove "string". The following sed command works: sed '5 s/\"*\"//' $file If there are multiple... (2 Replies)
Discussion started by: rennatsb
2 Replies

2. UNIX for Dummies Questions & Answers

Deleting a pattern in UNIX without deleting the entire line

Hi I have a file: r58778.3|SOURCES={KEY=f665931a...,fw,221-705}|ERRORS={16_1:T,30_1:T,56_1:C,57_1:T,59_1:A,101_1:A,115:-,158_1:C,186_1:A,204:-,271_1:T,305:-,350_1:C,368_1:G,442_1:C,472_1:G,477_1:A}|SOURCE_1="Contig_1092402550638"(f665931a359e36cea0976db191ff60ff09cc816e) I want to retain... (15 Replies)
Discussion started by: Alyaa
15 Replies

3. Shell Programming and Scripting

grep grab 19 letters from now or a full line

Hi, I have a file like this >hg19_chr1_123_456_+ asndbansbdahsjdbfsjhfghjdsghjdghjdjhdghjjdkhfsdkjfhdsjkdkjghkjdhgfjkhjfkf hasjgdhjsgfhjdsgfdsgfjhdgjhdjhdhjdfhjdfjgfdfbdghjbfjksdhfjsfdghjgdhjgfdjhgd jhgdfj >hg19_chr1_123_456_-... (5 Replies)
Discussion started by: jacobs.smith
5 Replies

4. Shell Programming and Scripting

Deleting new line characters

Hi, I have a weird requirement. I am having a file with 12fields in it and the end of the line for each record is "\n" (Just \n and no carriage returns) and the field delimiter is "|". Problem is I can have new line characters in any field in the data and these new line characters can even come... (11 Replies)
Discussion started by: ngkumar
11 Replies

5. UNIX for Dummies Questions & Answers

Grep /Awk letters X - X in every line and print it as a mac address

hey i m kinda new to this so i will appreciate any help , i have this list of values: pwwn = 0x50012482009cd7a7 nwwn=0x50012482009cd7a6 port_id = 0x280200 pwwn = 0x5001248201bcd7a7 nwwn=0x5001248201bcd7a6 port_id = 0x280300 pwwn = 0x50012482009c51ad nwwn=0x50012482009c51ac port_id =... (4 Replies)
Discussion started by: boaz733
4 Replies

6. UNIX for Dummies Questions & Answers

Deleting the first line of .gz file

Hi All, I have too many .gz files (test.gz). Task is to remove first line of each file. Can I do it without unzipping the files? Your help is appreciated. (4 Replies)
Discussion started by: Chulamakuri
4 Replies

7. UNIX for Dummies Questions & Answers

Deleting every other Line in VI

Hello, How would one delete every other two lines using VI? For example, I have the following 8 lines: Line1 Line2 Line3 Line4 Line5 Line6 Line7 Line8 And wish to only delete lines 3-4 and 7-8. Is there a certain pattern which would make this easier? Thank you, -Jahn (8 Replies)
Discussion started by: Jahn
8 Replies

8. UNIX for Dummies Questions & Answers

deleting a line from output

Hi , I have a script taht returns result in teh following format : End of input file. a,b,c 3,4,5 s,d,f, End of input file. d,t,h r,t,y, 4,6,9 a,4,f e,6,7 End of input file. w,e,r the script that gives this result is : tcpdump ..... | |sort|uniq -c | head -10 (2 Replies)
Discussion started by: HIMANI
2 Replies

9. Shell Programming and Scripting

Deleting Characters at specific position in a line if the line is certain length

I've got a file that would have lines similar to: 12345678 x.00 xx.00 x.00 xxx.00 xx.00 xx.00 xx.00 23456781 x.00 xx.00 xx.00 xx.00 xx.00 x.00 xxx.00 xx.00 xx.00 xx.00 34567812 x.00 xx.00 x.00 xxx.00 xx.00 xx.00 xx.00 45678123 x.00 xx.00 xx.00 xx.00 xx.00 x.00 xxx.00 xx.00 xx.00 xx.00 xx.00... (10 Replies)
Discussion started by: Cailet
10 Replies

10. Shell Programming and Scripting

Deleting lines above a certain line

Hi, I have a file that gets automatically generated and it would look something like sakjsd adssad {{word}} sddsasd dsdsasa . . . So basically what I want to do is just keep the stuff below the {{word}} marker. The marker includes the brackets. Is there any command to delete the... (3 Replies)
Discussion started by: eltinator
3 Replies
Login or Register to Ask a Question