Sponsored Content
Top Forums Shell Programming and Scripting Bash/awk and for loop to create a template Post 302947118 by invinzin21 on Monday 15th of June 2015 03:04:40 PM
Old 06-15-2015
Bash/awk and for loop to create a template

Source File:
Code:
google.cz http://czechrepublic.google.com/
http://czechrepublic.google.cz http://czechrepublic.google.com/
http://brno.google.cz http://brno.google.com/

Fail Code
Code:
root@arisvm ~/g] $ cat trya
rm -f ss
for i in a.txt
do
#b=`cat $i|awk '{print $1}'`
#c=`cat $i|awk '{print $2}'`
echo "server {"  >> ss
echo "          listen 80;"  >> ss
echo "          server_name  $(cat $i|awk '{print $1}'|head -1 ) "   >> ss
echo "  rewrite  ^/(.*)$   $(cat $i|awk '{print $2}' | head -1 )  permanent;"  >> ss
echo " } "  >> ss
done

output of fail code:
Code:
root@arisvm ~/g] $ cat ss
server {
          listen 80;
          server_name  google.cz
  rewrite  ^/(.*)$   http://czechrepublic.google.com/  permanent;
 }
root@arisvm ~/g] $


Desired Output:
Code:
server {
        listen 80;
        server_name google.cz;
        rewrite  ^/(.*)$ http://czechrepublic.google.com permanent;
        }
server {
        listen 80;
        server_name www.google.cz;
        rewrite  ^/(.*)$ http://czechrepublic.google.com permanent;
        }
server {
        listen 80;
        server_name czechrepublic.google.cz;
        rewrite  ^/(.*)$ http://czechrepublic.google.com permanent;
        }
server {
        listen 80;
        server_name brno.google.cz;
        rewrite  ^/(.*)$ http://brno.google.com permanent;
        }


Last edited by Scrutinizer; 06-15-2015 at 05:27 PM.. Reason: Additional CODE tag
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

AWK create loop for fields

Hi everybody: I just create awk script. This script calculate the average of a field, but i want to do it for every fields. The original field has 40 fields of numbers like that: 38.00 51.00 10.00 -99.90 75.00 47.00 4.00 -99.90 69.00 121.00 62.00 6.00 70.00 43.00 36.00 49.00 8.00 36.00 50.00... (1 Reply)
Discussion started by: tonet
1 Replies

2. Shell Programming and Scripting

create users from template

Create users from template file (0 Replies)
Discussion started by: rijeshpp
0 Replies

3. Shell Programming and Scripting

Using variables created sequentially in a loop while still inside of the loop [bash]

I'm trying to understand if it's possible to create a set of variables that are numbered based on another variable (using eval) in a loop, and then call on it before the loop ends. As an example I've written a script called question (The fist command is to show what is the contents of the... (2 Replies)
Discussion started by: DeCoTwc
2 Replies

4. Programming

Perl script to create latex template.

Hi, I have XML file and I extracted some tags and stored in hash, my data as look like this $var1={ 'stud.xml'={ '24'=>'<address> <streetname="xxxx"/> <housenum="138"/"> ... (9 Replies)
Discussion started by: veerubiji
9 Replies

5. Shell Programming and Scripting

Script to create EVIM template with SAS extension

I write lots of SAS programs and would like to create a script that allows me to have a template each time I create a new program file. Specs: I use EVIM for my editor. I run SAS in batch mode. We use RedHat 6. I don't use c shell. I want a script that will do the following: >... (3 Replies)
Discussion started by: starbecks
3 Replies

6. Shell Programming and Scripting

filling in strings in a template file using awk

Hi all, I have a template form to fill in for quite a number of files and I want to automate the filling-in process. the concept seemed to be simple but i cant get it work. the template form is a text file containing the information below: File Name: Date Created: Contents: I need to... (4 Replies)
Discussion started by: ida1215
4 Replies

7. Shell Programming and Scripting

Bash for loop with awk and variables

I'm relatively new to bash scripting and am trying to use awk inside a bash for loop but am having a problem with the variables. for i in $(seq 30 5 60) do # Define variables up and down in AWK eval $(awk 'BEGIN{ print "up=$((i+1))"}' < /dev/null) eval $(awk 'BEGIN{ print... (2 Replies)
Discussion started by: lily-anne
2 Replies

8. Red Hat

Create an unconfigured VMware host from a template that is set to do firstboot --reconfig

I have an Oracle Linux 7.1 vsphere host built. It's be preconfigured with our security configurations. What I would like to do is unconfigure this host. Then set the host to do firstboot --reconfigure. how do I do that using /etc/sysconfig/firstboot? I've tried setting ... (10 Replies)
Discussion started by: os2mac
10 Replies

9. Shell Programming and Scripting

awk to create variables to pass into a bash loop to create a download link

I have created one file that contains all the necessary info in it to create a download link. In each of the lines /results/analysis/output/Home/Auto_user_S5-00580-6-Medexome_67_032/plugin_out/FileExporter_out.67... (8 Replies)
Discussion started by: cmccabe
8 Replies

10. Shell Programming and Scripting

Create directory and sub-directory with awk and bash

In the below I am trying to create a parent directory using the R_2019 line from f1 if what above it is not empty. I then create sub-directories under each parent if there is a match between $2 of f1 and $2. Inside each sub-folder the matching paths in $3 and $4 in f2are printed. If there is no... (2 Replies)
Discussion started by: cmccabe
2 Replies
NYTPROFCSV(1p)						User Contributed Perl Documentation					    NYTPROFCSV(1p)

NAME
nytprofcsv - Devel::NYTProf::Reader CSV format implementation SYNOPSIS
$ nytprofcsv [-h] [-d] [-o <output directory>] [-f <input file>] perl -d:NYTProf some_perl_app.pl nytprofcsv Generating CSV Output... HISTORY
A bit of history and a shameless plug... NYTProf stands for 'New York Times Profiler'. Indeed, the original version of this module was developed by The New York Times Co. to help our developers quickly identify bottlenecks in large Perl applications. The NY Times loves Perl and we hope the community will benefit from our work as much as we have from theirs. Please visit <http://open.nytimes.com>, our open source blog to see what we are up to, <http://code.nytimes.com> to see some of our open projects and then check out <htt://nytimes.com> for the latest news! DESCRIPTION
"nytprofcsv" is a script that implements Devel::NYTProf::Reader to create comma-seperated value formatted reports from Devel::NYTProf databases. See the Devel::NYTProf Perl code profiler for more information. COMMAND-LINE OPTIONS These are the command line options understood by "nytprofcsv" -f, --file <filename> Specifies the location of the input file. The input file must be the output of fprofpp. Default: nytprof.out -o, --out <dir> Where to place the generated report. Default: ./nytprof/ -d, --delete Purge any existing database located at whatever -o (above) is set to -h, --help Print the help message SAMPLE OUTPUT
# Profile data generated by Devel::NYTProf::Reader v.0.01 # Author: Adam Kaplan. More information at http://search.cpan.org/~akaplan # Format: time,calls,time/call,code 0,0,0,#-------------------------------------------------------------------- 0,0,0,# My New Source File! 0,0,0,#-------------------------------------------------------------------- 0,0,0,# $Id: nytprofcsv 1310 2010-06-17 14:51:01Z tim.bunce@gmail.com $ 0,0,0,#-------------------------------------------------------------------- 0,0,0, 0,0,0,package NYT::Feeds::Util; 0.00047,3,0.000156666666666667,use Date::Calc qw(Add_Delta_DHMS); 0.00360,3,0.0012,use HTML::Entities; 0.00212,3,0.000706666666666667,use Encode; 0.00248,3,0.000826666666666667,use utf8; 0.00468,3,0.00156,use strict; 0,0,0, 0.00000,1,0,require Exporter; ... thats enough, get the picture? ... Note: The format line indicates what fields the numbers correspond to Note2: If the source file is modified between profiling and report generation, the source might be misaligned SEE ALSO
Mailing list and discussion at http://groups.google.com/group/develnytprof-dev <http://groups.google.com/group/develnytprof-dev> Public SVN Repository and hacking instructions at http://code.google.com/p/perl-devel-nytprof/ <http://code.google.com/p/perl-devel- nytprof/> Devel::NYTProf Devel::NYTProf::Reader nytprofhtml is an HTML implementation of Devel::NYTProf::Reader AUTHOR
Adam Kaplan, akaplan at nytimes dotcom COPYRIGHT AND LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. perl v5.14.2 2010-06-17 NYTPROFCSV(1p)
All times are GMT -4. The time now is 02:55 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy