Sponsored Content
Top Forums Shell Programming and Scripting cut the variable from the line and use it to find the file and read the content of that file Post 302569016 by rohit22hamirpur on Saturday 29th of October 2011 03:47:03 AM
Old 10-29-2011
cut the variable from the line and use it to find the file and read the content of that file

Hi,

I am working on one script..I am having files in the below format

file 1 (each line is separated with : delimeter)
SPLASH:SPLASH:SVN
CIB/MCH:MCH:SVN

Now I want from file 1 that most left part of the first line will store in one variable...i.e in the below way
a=SPLASH
b=SPLASH
c=SVN

a=CIB/MCH
b=MCH
c=SVN

and there is one folder which is having number of files that will start with the second varible of each line of file1

like TEST is a folder which is having
SPLASH_release.txt
MCH_release.txt

Now I want when second variable store in b like above example I want to use that variable to find that file in TEST folder and will read the content of that file.

these SPLASH_release.txt files always keep single line like SPLASH_11_26_00_RC01

Please help me on this.

Thanks,
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Read and store each line of a file to a variable

Hi all, I'm quite new to unix and hope that someone can help me on this. I'm using csh. Below is what i intend to do. 1. I stored some data in a file. 2. I intend to read the file line by line and store each line of data into a variable, so that i can used it later. Anyone have any... (4 Replies)
Discussion started by: seijihiko
4 Replies

2. Shell Programming and Scripting

Need help with awk - how to read a content of a file from every file from file list

Hi Experts. I need to list the file and the filename comes from the file ListOfFile.txt. Basicly I have a filename "ListOfFile.txt" and it contain Example of ListOfFile.txt /home/Dave/Program/Tran1.P /home/Dave/Program/Tran2.P /home/Dave/Program/Tran3.P /home/Dave/Program/Tran4.P... (7 Replies)
Discussion started by: tanit
7 Replies

3. Shell Programming and Scripting

shell script to read a line in gps receiver log file and append that line to new file

Hi, I have gps receiver log..its giving readings .like below Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. GPSD,R=1 $GPGSV,3,1,11,08,16,328,40,11,36,127,00,28,33,283,39,20,11,165,00*71... (3 Replies)
Discussion started by: gudivada213
3 Replies

4. Shell Programming and Scripting

how to Read a file and assigning each line to a variable?

Friends, I have a file output.txt with values as below: 092307135717 061910135717 I want to know how to read this file and then assign each value to a variable. say like var1=092307135717 var2=061910135717 So that I can use this VAR1 and Var2 in the shell script for further processing.... (3 Replies)
Discussion started by: shyamaladevi
3 Replies

5. Shell Programming and Scripting

How to read a file line by line and store it in a variable to execute a program ?

Hello, I am quite new in shell scripting and I would like to write a little scritp to run a program on some parameters files. all my parameters files are in the same directory, so pick them up with ls *.para >>dirafter that I have a dir file like that: param1.para param2.para etc... I... (2 Replies)
Discussion started by: shadok
2 Replies

6. Shell Programming and Scripting

While read line ignores the '\' in file content

I need to read temp.$i file content line by line through while loop but somehow the '\' do not appear in output.. Can someone guide how to read this exact content line by line in unix : if then cat temp.$i | head -1 # the file content appears fine while... (13 Replies)
Discussion started by: Prev
13 Replies

7. Shell Programming and Scripting

Do While Loop + Read From File + assign line to a variable

Hello, I am using below code for reading from a file and assigning the values to a variable , but it is loosing the value after the loop , please suggest to retain the value of the variable after the loop , while IFS=: read -r line do set $dsc=$line echo 'printing line variable ' $line... (1 Reply)
Discussion started by: ParthThakkar
1 Replies

8. Shell Programming and Scripting

Extract a part of variable/line content in a file

I have a variable and assigned the following values ***XYZ_201519_20150929140642_20150929140644_211_0_0_211 I need to read this variable from backward and stop read when I get first underscore (_) In this scenario I should get 211 Thanks Kris (3 Replies)
Discussion started by: mkris
3 Replies

9. Shell Programming and Scripting

Read and concatenate content file and file name

Hi all, i need a bash script. I have a 3 file named Milano, Torino, Firenze Into file i have: Milano Marco Luca Giorgio Michele PatrizioTorino Marco Giulio Emilio MicheleFirenze Luca Giorgio Marco Saverio EmilioThe output should be a all_city.csv file like: (3 Replies)
Discussion started by: kamose
3 Replies

10. Shell Programming and Scripting

Cut line from searched file if grep find neighbor columns

Hello All, While searching for the question, I found some answers but my implementation is not giving expected output. I have two files; one is sourcefile, other is named template. What I want to do is to search each line in template, when found all columns, cut the matching line from source... (4 Replies)
Discussion started by: baris35
4 Replies
SVN::Notify::Filter::Trac(3pm)				User Contributed Perl Documentation			    SVN::Notify::Filter::Trac(3pm)

Name
       SVN::Notify::Filter::Trac - Filter SVN::Notify output in Trac format

Synopsis
       Use svnnotify in post-commit:

	 svnnotify --p "$1" --r "$2" --to you@example.com --handler HTML 
	 --filter Trac --trac-url http://trac.example.com

       Use the class in a custom script:

	 use SVN::Notify;

	 my $notifier = SVN::Notify->new(
	     repos_path => $path,
	     revision	=> $rev,
	     to 	=> 'you@example.com',
	     handler	=> 'HTML::ColorDiff',
	     filters	=> [ 'Trac' ],
	     trac_url	=> 'http://trac.example.com/',
	 );
	 $notifier->prepare;
	 $notifier->execute;

Description
       This module filters SVN::Notify log message output from Trac markup into HTML.  Essentially, this means that if you write your commit log
       messages using Trac wiki markup and like to use SVN::Notify::HTML or SVN::Notify::HTML::ColorDiff to format your commit notifications, you
       can use this filter to convert the Trac formatting in the log message to HTML.

       If you specify an extra argument, "trac_url" (or the "--trac-url" parameter to "svnnotify"), it will be used to generate Trac links for
       revision numbers and the like in your log messages.

See Also
       SVN::Notify
       svnnotify

Author
       David E. Wheeler <david@kineticode.com>

Copyright and License
       Copyright (c) 2008 Kineticode, Inc. Some Rights Reserved.

       This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

perl v5.10.1							    2011-03-15					    SVN::Notify::Filter::Trac(3pm)
All times are GMT -4. The time now is 07:41 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy