Need help in building Unix script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need help in building Unix script
# 1  
Old 03-24-2009
Need help in building Unix script

Hi all,

We have a requirement like,

There will be a file. For example the content will be as follows

+=KA100012345678 0114092150R328abcdefgh
D 345626 011409
1 2121212 232323 12121212 2323232323 1212121

We need to select the bold portion and change it to a different number, lets assume the new number will be 123456. There will be thousands of files and in each files we need to select the second string of digits as in the above example, and the strings will be different in all the files.

We need to do it in Unix. Any suggestion will be highly appreciated.

Thank you for your time.

Regards
Susant

Last edited by susant.igate; 03-24-2009 at 08:22 AM..
# 2  
Old 03-24-2009
Hi
This may help you

Code:
 
sed 's/pattern1/pattern2/g' filename > filename2

above command will replace pattern1 by inserting patter2.
also g is for global replacement if you want to replace only one occurance then use
Code:
 
sed 's/pattern1/pattern2/1' filename > filename2


Thanks
SHa
# 3  
Old 03-24-2009
Thank you SHa for your quick reply. But the problem is we need to replace different string in the second line second position in thousands of files. I need a logic which will select the second string and replace the same with 12345.

Regards
Susant
# 4  
Old 03-24-2009
Please help someone Smilie
# 5  
Old 03-24-2009
sorry i did not get your query..

could you give some sample that you required..

Thanks
SHa
# 6  
Old 03-24-2009
Thank you.

Suppose i have two files

file1.dc

+=KA100012345678 0114092150R328abcdefgh
D 345626 011409
1 2121212 232323 12121212 2323232323 1212121

file2.dc

+=KA100012345678 0114092150R328abcdefgh
X 345268 908789
1 2121212 232323 12121212 2323232323 1212121

and so on. There can be thousands of files with different data. We just need to change the bold data in all the files to 123456.

Thank you once again SHa.

Regards
Susant
# 7  
Old 03-24-2009
can try a simple script as such:

for i in `cat filelist`
do
v1=`cat $i | head -2 |tail -1|awk '{print $2}'`
cat $i | sed "s/$v1/123456/1" > tempfile
mv tempfile $i
done

where filelist is a file containing all the files to be examined/replaced ie contains file1.dc file2.dc
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

UNIX: Building The Most Important OS in the World By John Loeffler

Nice UNIX history article by John Loeffler, February, 05th 2019 UNIX: Building The Most Important OS in the World The most widely used operating system in the world was a project born out of failure. (0 Replies)
Discussion started by: Neo
0 Replies

2. Shell Programming and Scripting

Building a dynamic UNIX menu with input files

Hi! I am looking to build dynamic menu (named: lookup.sh) that reads a pipe delimited file for input. for example, contents of input.txt could be: user1|srv1 user3|srv1 user4|srv1 user2|srv2 I want the menu look like: 1) get password for user1 on srv1 2) get password for user3 on... (7 Replies)
Discussion started by: cpolikowsky
7 Replies

3. UNIX for Dummies Questions & Answers

Error building program in UNIX

I'm trying to build a program and I'm getting a series of messages that I don't understand (new to UNIX): make: Entering directory `/disk/cg6/ccoda/code/proj/abrupt/exp/cam1/models/atm/cam/tools/scam/ui' g++ -c -Wall -g -DLINUX -DREAL_TYPE=double -DNeedFuncProto ... (7 Replies)
Discussion started by: bstephens
7 Replies

4. UNIX for Advanced & Expert Users

Building a Unix Server from Scratch?

Hello Everyone, This post is a result of my search and quest to build a Unix Server at Home. I am familiar with the most of the systems such as, Solaris 10, HP-UX & Linux. Can somebody help me with more information about How to Build a Unix Server right from Fundamentals.... ? I have... (5 Replies)
Discussion started by: Vabiosis
5 Replies

5. Shell Programming and Scripting

Need help in building Unix script

Hi all, We have a requirement like we need to create a program which will change a particular string in the file. For example +=KA1238767 1121 3344645 686943 22356 01 567893 12435 12121 983627 121 1092 091217 02 may be for engine failure In the above file we need to change the bold string... (2 Replies)
Discussion started by: susant.igate
2 Replies

6. UNIX for Dummies Questions & Answers

Building from scratch - UNIX

Hi! Any knows if Unix (from IBM, Sun, HP, etc) is picky on hardwares? I mean, installing Unix (not Linux) on a custom build system? Thanks. (2 Replies)
Discussion started by: genesisX
2 Replies

7. Shell Programming and Scripting

Building a Linux like LS for Unix

I'm trying to customize my environment at work in a Unix system. So I'm starting with the ls command... I'd like to make it run as the Linux ls... Even in color, if possible... My first problem is to make the file listing brake in columns... In fact, the actual ls from Unix does this, but... (3 Replies)
Discussion started by: 435 Gavea
3 Replies

8. Shell Programming and Scripting

Help building the logic for a script

Hi guys, I am new to shell scripting, i need your help to tackle a problem. I have a single file, sample is below: 2008:07:08 07:01:14.360 (tid 4) INFO no bonus notifications to send 2008:07:08 07:01:50.823 (tid 1) INFO Database cleaned of all stale bonus records order than 30 days... (3 Replies)
Discussion started by: fahadaizaz
3 Replies

9. Shell Programming and Scripting

building a SET clause in shell script

Hi, I have a comma delimited string, e.g. empno, ename, sal. Using Korn Shell Script I want to build the SET clause for an UPDATE statement, and set clause should look like this: empno=decode(:empno, '?', empno, :empno), ename=decode(:ename, '?', empno, :ename), sal=decode(:sal, '?',... (14 Replies)
Discussion started by: shalua
14 Replies

10. UNIX for Advanced & Expert Users

building flat files in unix and importing them from windows

what is a flat file in unix? i have to import a unix flat files from windows based programme. my question is not to export from unix but only to import from windows only. how to build that flat files? how to create export to windows how to import from windows (3 Replies)
Discussion started by: tunirayavarapu
3 Replies
Login or Register to Ask a Question