Sponsored Content
Top Forums Shell Programming and Scripting Replace all string matches in file with unique random number Post 303024269 by funkman on Friday 5th of October 2018 03:42:23 AM
Old 10-05-2018
Replace all string matches in file with unique random number

Hello
Take this file...
Code:
Test01
Ref test
Version 01

Test02
Ref test
Version 02

Test66
Ref test
Version 66

Test99
Ref test
Version 99

I want to substitute every occurrence of Test[0-9]{2} with a unique random number, so for example, if I was using sed, substitution would be something like the below but obviously the below does reevaluate the random number for each occurrence of Test[0-9]{2}
Code:
num=$((1+RANDOM 20 % 60))
sed -ri "s/Test[0-9]{2}/Test${num}/" test_file

So on the execution of substitution, the file would read something like
Code:
Test59
Ref test
Version 01

Test57
Ref test
Version 02

Test48
Ref test
Version 66

Test51
Ref test
Version 99

Moderator's Comments:
Mod Comment Please use CODE tags when displaying sample input and sample output as well as when displaying code segments.

Last edited by MadeInGermany; 10-05-2018 at 09:03 AM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Replace a certain string with string containing random rubbish

Hello, in my shell script i have some multi-line text in a variable $TEMP - f.e. blablahblah blah blah bla TARGET hgloglo And i need to replace TARGET with text from another variable ($REPLACE), which is containing some text with nasty characters (\n, ", :, etc.) And stuff the altered text... (2 Replies)
Discussion started by: MilanCZ
2 Replies

2. Shell Programming and Scripting

Replace a random string of numbers

Hi Can someone help me with this one? I have string.. (PROC_PROC_ID == 12183) <--PID is dynamic and i want to replace the PID number with whatever PID from /opt/hpws/apache32_2/logs/httpd.pid file. i'm having problem since the PID on the string is dynamic. It may be 2-5 digits or more. ... (5 Replies)
Discussion started by: ryandegreat25
5 Replies

3. UNIX for Dummies Questions & Answers

Sed to replace second number in a random string

I need a sed line that will take STDM111 and change it to STDM161 the STDM will always be constant but the 3 numbers after will be random, I just need it to always replace the middle number with 6 regardless of what the numbers are. (8 Replies)
Discussion started by: glev2005
8 Replies

4. Shell Programming and Scripting

Get line number when matches a string

If I have a file something like as shown below, ARM*187878*hjhj BAG*88778*jjjj COD*7777*kkkk BAG*87878*kjjhjk DEF*65656*89989*khjkk I need the line numbers to be added with a colon when it matches the string "BAG". Here in my case, I need something like ARM*187878*hjhj... (4 Replies)
Discussion started by: Muthuraj K
4 Replies

5. Shell Programming and Scripting

Using SED to replace a random number?

Hi all, I need to run a number of scripts which have a certain phrase on them so I have identified these by; grep -l 100 *script | sort -u Normally I could just run something along the lines of; for i in `grep -l 100 *script | sort -u`; do ./${i}; done However before I run each of... (0 Replies)
Discussion started by: JayC89
0 Replies

6. Shell Programming and Scripting

Replace 2nd column for each line in a csv file with fixed string+random number

Hi experts, My csv file looks like this U;cake;michael;temp;;;; U;bread;john;temp;;;; U;cocktails;sarah;temp;;;; I'd like to change the value fo 2nd column to cf+random number , which will look maybe something like this U;cf20187;michael;temp;;;; U;cf8926;john;temp;;;;... (7 Replies)
Discussion started by: tententen
7 Replies

7. Shell Programming and Scripting

Replace column by random number addition

Here is my problem:- I have a file with pipe separated values. CR|20121021|079|ABC|N|DLS|00038|DLS|04750|1330597704|634234|634|0 CR|20121021|079|ABC|N|DLS|00038|DLS|05118|2071690102|354|351|3 CR|20121021|079|ABC|N|DLS|00038|DLS|05140|960051505|1088|1088|0... (4 Replies)
Discussion started by: Yoda
4 Replies

8. Shell Programming and Scripting

Help in printing n number of lines if a search string matches in a file

Hi I have below script which is used to grep specific errors and if error string matches send an email alert. Script is working fine , however , i wish to print next 10 lines of the string match to get the details of error in the email alert Current code:- #!/bin/bash tail -Fn0 --retry... (2 Replies)
Discussion started by: neha0785
2 Replies

9. Shell Programming and Scripting

Replace string of a file with a string of another file for matches using grep,sed,awk

I have a file comp.pkglist which mention package version and release . In 'version change' and 'release change' line there are two versions 'old' and 'new' Version Change: --> Release Change: --> cat comp.pkglist Package list: nss-util-devel-3.28.4-1.el6_9.x86_64 Version Change: 3.28.4 -->... (1 Reply)
Discussion started by: Paras Pandey
1 Replies

10. UNIX for Beginners Questions & Answers

Replace matches string in each line with the arrayvalue in shell

I have a list of value , and need to replace that in my file. Eg: File1 tcname:fail tcname: Pass tcname:skipped File2: 01,02,03 Output: File 1 01:fail 02: Pass 03:Skipped (8 Replies)
Discussion started by: DevAakash
8 Replies
ic_c_protocol(3erl)						C Library Functions					       ic_c_protocol(3erl)

NAME
ic_c_protocol - IC C Protocol Functions DESCRIPTION
This manual page lists some of the functions of the IC C runtime library that are used internally for the IC protocol. The listed functions are used internally by generated C client and server code. They are documented here for the advanced user that want to replace the default protocol (Erlang distribution + gen_server) by his own protocol, For each set of client or sever functions below with prefix oe , the user has to implement his own set of functions, the names of which are obtained by replacing the oe prefix by Prefix . The Prefix has to be set with the option {user_protocol, Prefix} at compile time. The following terminology is used (reflected in names of functions): a notification is a message send from client to server, without any reply back (i.e. a oneway operation); a request is a message sent from client to server, and where a reply message is sent back from the server to the client. In order to understand how the functions work and what they do the user must study their implementation in the IC C library (source file is ic.c ), and also consider how they are used in the C code of ordinary generated client stubs or server skeletons. CLIENT PROTOCOL FUNCTIONS
The following functions are used internally by generated C client code. EXPORTS
int oe_prepare_notification_encoding(CORBA_Environment *env) The result of this function is the beginning of a binary of in external format of the tuple {'$gen_cast', X} where X is not yet filled in. In generated client code this function is the first to be called in the encoding function for each oneway operation. int oe_send_notification(CORBA_Environment *env) int oe_send_notification_tmo(CORBA_Environment *env, unsigned int send_ms) Sends a client notification to a server according to the Erlang distribution + gen_server protocol. The send_ms parameter specified a timeout in milliseconds. int oe_prepare_request_encoding(CORBA_Environment *env) The result of this function is the beginning of a binary in the external format of the tuple {'$gen_call', {Pid, Ref}, X} where X is not yet filled in. In generated client code this function is the first to be called in the encoding function for each twoway operation. int oe_send_request_and_receive_reply(CORBA_Environment *env) int oe_send_request_and_receive_reply_tmo(CORBA_Environment *env, unsigned int send_ms, unsigned int recv_ms) Sends a client request and receives the reply according to the Erlang distribution + gen_server protocol. This function calls the oe_prepare_reply_decoding function in order to obtain the gen_server reply. send_ms and recv_ms specify timeouts for send and receive, respectively, in milliseconds. int oe_prepare_reply_decoding(CORBA_Environment *env) Decodes the binary version of the tuple {Ref, X} , where X is to be decoded later by the specific client decoding function. SERVER PROTOCOL FUNCTIONS
The following functions are used internally by generated C server code. EXPORTS
int oe_prepare_request_decoding(CORBA_Environment *env) Decodes the binary version of the tuple {'$gen_cast', Op} ( Op an atom), or the tuple {'$gen_cast', {Op, X}} , where Op is the oper- ation name, and where X is to be decoded later by the specific operation decoding function; or decodes the binary version of the tuple {'$gen_call', {Pid, Ref}, Op} ( Op an atom), or the tuple {'$gen_call', {Pid, Ref}, {Op, X}} , where Op> is the operation name, and X is to be decode later by the specific operation decoding function. int oe_prepare_reply_encoding(CORBA_Environment *env) Encodes the beginning of the binary version of the tuple {{Ref,X} , where X is to be filled in by the specific server encoding func- tion. SEE ALSO
ic(3erl), ic_clib(3erl), IC Protocol Ericsson AB ic 4.2.26 ic_c_protocol(3erl)
All times are GMT -4. The time now is 01:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy