Sponsored Content
Top Forums Shell Programming and Scripting Seach for a string following a particular string in a file Post 302864201 by Anamika08 on Wednesday 16th of October 2013 06:09:22 AM
Old 10-16-2013
Will it work for perl.. I want in perl...

---------- Post updated at 05:09 AM ---------- Previous update was at 05:07 AM ----------

Will it work for perl ???I want to run for perl in windows....
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Seach for part of string and replace whole word

I am trying to find words in a text with a certain ending with sed and replace them with themselves but wrapped in tabs ex.: The fish swims in the water. -> searching for -ms ending The fish <tab>swims<tab>in the water. I've been trying all sorts of commands and get either an error... (5 Replies)
Discussion started by: stinnes
5 Replies

2. Shell Programming and Scripting

search string in a file and retrieve 10 lines including string line

Hi Guys, I am trying to write a perl script to search a string "Name" in the file "FILE" and also want to create a new file and push the searched string Name line along with 10 lines following the same. can anyone of you please let me know how to go about it ? (8 Replies)
Discussion started by: sukrish
8 Replies

3. Shell Programming and Scripting

replace (sed?) a single line/string in file with multiple lines (string) from another file??

Can someone tell me how I can do this? e.g: Say file1.txt contains: today is monday the 22 of NOVEMBER 2010 and file2.txt contains: the 11th month of How do i replace the word NOVEMBER with (5 Replies)
Discussion started by: tuathan
5 Replies

4. Shell Programming and Scripting

replace (sed?) a string in file with multiple lines (string) from variable

Can someone tell me how I can do this? e.g: a=$(echo -e wert trewt ertert ertert ertert erttert erterte rterter tertertert ert) How do i replace the STRING with $a? I try this: sed -i 's/STRING/'"$a"'/g' filename.ext but this don' t work (2 Replies)
Discussion started by: jforce
2 Replies

5. Shell Programming and Scripting

sed or awk command to replace a string pattern with another string based on position of this string

here is what i want to achieve... consider a file contains below contents. the file size is large about 60mb cat dump.sql INSERT INTO `table1` (`id`, `action`, `date`, `descrip`, `lastModified`) VALUES (1,'Change','2011-05-05 00:00:00','Account Updated','2012-02-10... (10 Replies)
Discussion started by: vivek d r
10 Replies

6. Shell Programming and Scripting

grep exact string from files and write to filename when string present in file

I am attempting to grep an exact string from a series of files within a directory and append that output to the filename when it is present in the file. I've been after this all day with no luck. Thanks for your help in advance :wall:. (4 Replies)
Discussion started by: JC_1
4 Replies

7. Shell Programming and Scripting

Search a string in a text file and add another string at the particular position of a line

I am having a text file which is having more than 200 lines. EX: 001010122 12000 BIB 12000 11200 1200003 001010122 2000 AND 12000 11200 1200003 001010122 12000 KVB 12000 11200 1200003 In the above file i want to search for string KVB and add/replace... (1 Reply)
Discussion started by: suryanarayana
1 Replies

8. Shell Programming and Scripting

Search a string in a text file and add another string at the end of line

Dear All I am having a text file which is having more than 200 lines. EX: 001010122 12000 BIB 12000 11200 1200003 001010122 2000 AND 12000 11200 1200003 001010122 12000 KVB 12000 11200 1200003 In the above file i want to search for string KVB... (5 Replies)
Discussion started by: suryanarayana
5 Replies

9. UNIX for Beginners Questions & Answers

Search a string and display its location on the entire string and make a text file

I want to search a small string in a large string and find the locations of the string. For this I used grep "string" -ob <file name where the large string is stored>. Now this gives me the locations of that string. Now how do I store these locations in a text file. Please use CODE tags as... (7 Replies)
Discussion started by: ANKIT ROY
7 Replies

10. 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
Libplot(3pm)						User Contributed Perl Documentation					      Libplot(3pm)

NAME
Graphics::Libplot - Perl extension for libplot plotting library SYNOPSIS
use Graphics::Libplot ':All'; DESCRIPTION
This module lets you create plots by calling the routines in the libplot library. The libplot library is included in the plotutils package. Wrappers for each published C function are present. So the section of the plotutils info pages on programming in C should be your main reference. There are a few possible confusions, which are noted below. libplot has three different api's. This perl module provides and interface to the second one. It is the same as the most recent api, except that the the functions are not re-entrant. The api supported here is described in the section "Older C application programming interfaces" in the libplot manual. Some of the C routines require character constants rather than strings. When using the equivalent perl function, you must wrap the character with the 'ord' function. For instance, alabel(ord 'c', ord 'c', "some text"); , will write some centered text. There is another unrelated perl-module interface to GNU libplot, called "Graphics::Plotter". EXPORTING FUNCTIONS
None of the libplot functions is exported by default. If you do not import any functions you must prepend the module name to each function. To call the pl_openpl() function you would give, Graphics::Libplot::pl_openpl(); However, if you include the library with use Graphics::Libplot ':All' then all of the functions will be exported, and you do not need to prepend the module name. In this case you need to be careful because there are many function names which may collide with others in your program. On the other hand you can use one of use Graphics::Libplot ':INTEGERLOW' use Graphics::Libplot ':FLOATLOW' to get just integer or just floating point plotting. Be aware that the interface is still under development so more names will be added, and your scripts may need to be changed. EXAMPLES
There are additional examples included in the source distribution. (They are in /usr/share/doc/libgraphics-libplot-perl/examples on debian systems.) This example draws a spiraling box pattern. use Graphics::Libplot ':ALL'; # type of plotting device $device = 'X'; if (@ARGV) { $device = $ARGV[0]; die "Uknown device: $ARGV[0]" unless $ARGV[0] =~ /^ps|X|fig$/; } { # environment for local variables my $SIZE=100; my ($i,$f,$s,$sf); pl_parampl ("BITMAPSIZE", "700x700"); $handle = pl_newpl($device, stdin, stdout, stderr); # open xwindow display pl_selectpl($handle); pl_openpl(); pl_fspace(-$SIZE,-$SIZE, $SIZE, $SIZE); # specify user coord system pl_pencolorname ("blue"); pl_fontname("HersheySerif"); $s = 10; $f = 10; $sf = 1- .0012; for($i=1;$i<3000;$i++){ pl_fscale($sf,$sf); pl_fbox(60+$s*sin($i/$f), 60+$s*sin($i/$f), 75-$s*cos($i/$f), 75-$s*cos($i/$f)); pl_frotate(1); } } pl_closepl(); pl_selectpl(0); pl_deletepl($handle); BUGS
The newest API is not supported. There is no test suite with this module, so it is not clear that everything works correctly. AUTHOR
John Lapeyre <lapeyre@physics.arizona.edu> wrote this perl interface. The libplot C library is developed by Robert Maier. COPYRIGHT
libplot-perl is copyrighted by John Lapeyre and may be distributed only under the terms of either the Gnu General Public License, or of the perl Artistic License. SEE ALSO
perl(1). perl v5.14.2 2011-11-15 Libplot(3pm)
All times are GMT -4. The time now is 11:34 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy