Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
290 views
in Technique[技术] by (71.8m points)

awk - shell command to delete range of characters from a line

I have a file which has one single line of 50 characters. I want to delete character 12 to 17 and character 33 to 44 using any shell command. Can anyone please guide me on this.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

cut removes sections from each line of files. From man cut:

-c
specifies a range of characters

--complement
complement the set of selected bytes, characters or fields

this can be help to print from first to 11th character, from 18th to 32th and from 45th to the end:

cut -c -11,18-32,45- yourFile

or

cut -c 12-17,33-44 text --complement yourFile

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...