Sponsored Content
Top Forums Shell Programming and Scripting To substitute multiple variable by their content in a file Post 302981528 by RudiC on Wednesday 14th of September 2016 10:32:16 AM
Old 09-14-2016
Try
Code:
awk -v RP="$var" '
BEGIN   {for (n=split(RP, T1, "\n"); n>0; n--)  {split (T1[n], T2, ":")
                                                 REPL[T2[1]] = T2[2]
                                                }
        }
        {for (r in REPL) sub (r, REPL[r])
        }
1
' file
                              DEFINE OPERATOR FILE_READER_EFGH
                              DESCRIPTION 'TERADATA PARALLEL TRANSPORTER DATA CONNECTOR PRODUCER OPERATOR'
                              TYPE DATACONNECTOR PRODUCER
                              SCHEMA SCHEMA_EFGH
                              ATTRIBUTES
                            (
                              DirectoryPath                = '@DirectoryPath'
                            , ArchiveDirectoryPath         = '@ArchiveDirectoryPath'
                            , FileName                     = '*_VERSFLDR.csv'
                            , Format                       = 'DELIMITED'
                            , TextDelimiter                = '$$'
                            , EnableScan                   = 'Y'
                            , IndicatorMode                = 'N'
                            , TrimTrailingBlanks           = 'Y'
                            , TrimLeadingBlanks            = 'Y'
                            , OpenMode                     = 'Read'
                            );

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

redirecting variable content to a file!

Hello! I'm having problems trying to extract the contents of a variable and placing it into a text file. Grateful for any help. Been trying something along the lines of: $variable > file.txt or `cat < $variable` > file.txt As you can see I'm a newbie to this :D (2 Replies)
Discussion started by: lloowen
2 Replies

2. UNIX for Dummies Questions & Answers

How to assign the content of a file to a variable?

Hi all, I have a problem here. I have a file and let we take the content of the file is just '32' (only a numeric value in that file). Now I need to assign this numeric value ( value in that file) to a variable. Is that possible? If so, can you plz advice me on this? Thanks in... (4 Replies)
Discussion started by: iamgeethuj
4 Replies

3. Shell Programming and Scripting

Variable of Content From Part of Other File

I may not being doing this description justice, but I'll give it a try. I created a mailx script; there will be several messages using the same script where the only difference is the content. So I figured I'd make the content of the message a variable retrieved from a separate file. I have five... (5 Replies)
Discussion started by: royarellano
5 Replies

4. Shell Programming and Scripting

How to put content of file into a variable?

For example, I have a simple text file note: this a note a simple note a very very simple notewhen I use this command, temp=$(cat "note.txt")then I echo temp, the result is in one line. echo $temp note: this a note a simple note a very very simple noteMy variable doesn't have newline. How... (7 Replies)
Discussion started by: 14th
7 Replies

5. Shell Programming and Scripting

Variable resolution in File content

I have a file File1 containing lines like below apple ${FRUIT}-Color orange ${FRUIT}-Color banana ${FRUIT}-Color Now, in my shell I'm reading the file like below while read FRUIT DESC; do echo $FRUIT $DESC; done < File1 which outputs - apple ${FRUIT}-Color orange ${FRUIT}-Color... (3 Replies)
Discussion started by: nexional
3 Replies

6. Shell Programming and Scripting

How to replace multiple file content?

Hi Gurus, I need replace multiple files content. the file name pattern likes currentfile_code_* the content pattern in the file like text=value I need replace the content as text=abcde Thanks in advance (7 Replies)
Discussion started by: ken6503
7 Replies

7. UNIX for Dummies Questions & Answers

Getting ls content into a file using variable

hi i just cant figure out how can i do this ls -lt > log.txt using $PWD what i mean is how can i get the ls command content into a file using $PWD variable? :confused: (4 Replies)
Discussion started by: chinababy
4 Replies

8. Shell Programming and Scripting

Substitute one line of multiple files according to another file

I need to make ~96 configure files from a template config file which has hundreds of rows that looks like: template.config: #average insert size avg_ins=1000 ...... other information omitted Those config files are named in sequence from S01.config, S02.config, ... etc with different... (11 Replies)
Discussion started by: yifangt
11 Replies

9. Shell Programming and Scripting

Replacement of variable by their content in a file

Dear all, I have a "SQL request" in a file: that request include different "host variable" and I would like to substitute the different "host variable" by their respective content before executing the request. For example: $ echo $SHELL /bin/bash $ cat dae2.txt DELETE FROM ... (11 Replies)
Discussion started by: dae
11 Replies

10. Shell Programming and Scripting

How to substitute a word in multiple file?

Team, I want to change below parameter in all the files in a directory, Check for HOSTNAME=`hostname` Change to HOSTNAME=localhost And I tried below but, its not working ☹ find /tmp -type f -exec sed 's/"HOSTNAME\=\`hostname\`"/"HOSTNAME\=localhost/g'" Help me if I am missing... (6 Replies)
Discussion started by: natraj005
6 Replies
Devel::REPL::Overview(3pm)				User Contributed Perl Documentation				Devel::REPL::Overview(3pm)

NAME
Devel::REPL::Overview - overview of Devel::REPL. DESCRIPTION
What is a console? How it can assist you? Most modern languages have consoles. Console is an interactive tool that evaluates your input while you type it. It gives you several advantages: o Quickly test some thought or tricky expression o Run some code bigger than one line without a temporary file o Play around with libraries and modules o You can even call a console in your script and play around in script's context For Ruby it would be irb, for Python is... python byitself and for perl... and there was nothing for perl (except that ugly perl -d -e "" and several failed projects) until Devel::REPL was written by Matt S Trout (a.k.a. mst) from ShadowCatSystems <http://www.shadowcatsystems.co.uk>. Devel::REPL - the Perl console REPL stands for Read, Evaluate, Print, Loop. Lets install and try it. $ cpan Devel::REPL After installation you have a lot of new modules, but the most interesting things are: o Devel::REPL A top level module. o re.pl Wrapper script, running console. And a bunch of plugins (I'll describe them later). In command line type: $ re.pl If everything is ok you'll see a prompt (underlined $). That's it. You can start typing expressions. An example session: $ sub factorial { > my $number = shift; > return $number > 1 ? $number * factorial($number-1) : $number; > } $ factorial 1 # by the way, comments are allowed 1 # our return value $ factorial 5 120 $ [1,2,3,4,5,6,7] $ARRAY1 = [ 1, 2, 3, # return values are printed with Data::Dumper::Streamer. 4, # See Plugins section 5, 6, 7 ]; $ {apple=>1,fruit=>'apple',cart=>['apple','banana']} $HASH1 = { apple => 1, cart => [ 'apple', 'banana' ], fruit => 'apple' }; $ package MyPackage; # create a package $ sub say_hi { # define a sub > print "Hi! "; > } # statement is evaluated only after we've finished typing block. # See Plugins section. > __PACKAGE__ MyPackage > package main; > __PACKAGE_ main > MyPackage->say_hi Hi! 1 $ Control files a.k.a. I don't want to type it every time Devel::REPL has control files feature. Control files are evaluated on session start in the same way as you would type them manually in console. Default control file is located at `$HOME/.re.pl/repl.rc` . You can store there any statements you would normally type in. I.e. my `$HOME/.re.pl/repl.rc` has next lines: use feature 'say'; # to don't write all the time use Data::Dumper; # pretty print data structures sub pp { print Data::Dumper->Dump([@_]) } You can have multiple control files and they can be anywhere in the file system. To make re.pl use some rc-file other than repl.rc call it like this: $ re.pl --rcfile /path/to/your/rc.file If your rc-file is in `$HOME/.re.pl` directory, you can omit path: $ re.pl --rcfile rc.file If you have rc-file with the same name in current directory and you don't want to type path, you can: $ re.pl --rcfile ./rc.file I want it to bark, fly, jump and swim! or Plugins Plugins extend functionality and change behavor of Devel::REPL. Bundled plugins are: o Devel::REPL::Plugin::History No comments. Simply history. o Devel::REPL::Plugin::!LexEnv Provides a lexical environment for the Devel::REPL. o Devel::REPL::Plugin::DDS Formats return values with Data::Dump::Streamer module. o Devel::REPL::Plugin::Packages Keeps track of which package your're in. o Devel::REPL::Plugin::Commands Generic command creation plugin using injected functions. o Devel::REPL::Plugin::MultiLine::PPI Makes Devel::REPL read your input until your block is finished. What does this means: you can type a part of a block on one line and second part on another: $ sub mysub { > print "Hello, World! "; ## notice prompt change > } $ mysub Hello, World! 1 $ but this *doesn't* mean you can print sub name or identifier on several lines. Don't do that! It won't work. There are lots of contributed plugins you can find at CPAN. Profiles If plugins change and extend functionality of Devel::REPL, profiles are changing your environment (loaded plugins, constants, subs and etc.). There's only one bundled profile called `Devel::REPL::Profile::Default`, lets take a look at it: package Devel::REPL::Profile::Default; use Moose; ### advanced OOP system for Perl ### keep those exports/imports out of our namespace use namespace::clean -except => [ 'meta' ]; with 'Devel::REPL::Profile'; ## seem perldoc Muse sub plugins { ### plugins we want to be loaded qw(History LexEnv DDS Packages Commands MultiLine::PPI); } ### the only required sub for profile, ### it is called on profile activation sub apply_profile { my ($self, $repl) = @_; ### $self - no comments, $repl - current instance of Devel::REPL $repl->load_plugin($_) for $self->plugins; ### load our plugins } 1; At the moment there are no profiles on CPAN. Mostly you'll use control files. To enable some profile use --profile switch: $ re.pl --profile SomeProfile See Also Devel::REPL, Devel::REPL::Plugin, Devel::REPL::Profile perl v5.14.2 2010-05-08 Devel::REPL::Overview(3pm)
All times are GMT -4. The time now is 05:47 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy