[SOLVED] Replace string in several files at position
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I have over 35k files and I would like to replace the first 12 characters of certain string on all files with 'x'.
I used grep -ir 'string_name' /home/user/files/* to list the files that contain the specific string I want to change. How can I use SED or AWK to accomplish this task?
Which first twelve? Can you describe your pattern a little more?
I'd anchor the pattern to the beginning of the line so that matches only the first letters not anywhere else on the line. Leaving off the /g modifier also restricts the pattern to a single attempt per line:
Code:
sed -e "s/^$A/$B/;" /path/to/files/*.txt
And be sure to leave off the -i until you are sure the pattern works.
See:
Code:
man sed
man 7 regex
Also, it is best if you have a backup using tar before experimenting.
Thank you Turbocapitalist. I will give your suggestion above a try. If it does not work, I will have to be more specific with what I would like to accomplish.
of course, you need to repeat [0-9] 12 times, if you want to replace 12 digits. or course you must not add ..... and spaces.
of course, you need to specify the replacement string exactly too.
try that, and you will see. but I would really like to ask you to understand/learn how sed works:
Code:
/^ACCT:/ look for lines beginning with ACCT:
s means the command substitution
/ delimiter
something to search for
/ delimiter
string replacement string
/ closing delimiter
optional modifiers, at this time there is no any
from this point of view probably the replacement string is not ok (what you specified), but you need to know that exactly
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.