Sponsored Content
Top Forums Shell Programming and Scripting script in perl for removing strings between a file Post 302566244 by kanikasharma on Thursday 20th of October 2011 02:15:46 AM
Old 10-20-2011
@Skrynesaver, i used the code. It removes only TER and not line before it (ATOM 2518 OXT VAL 160 7.646 12.461 -0.386) and not even3 lines after the immediate line after TER i.e
(ATOM 2520 H1 VAL 161 -15.336 5.698 -25.811
ATOM 2521 H2 VAL 161 -13.416 10.529 17.708
ATOM 2522 H3 VAL 161 -14.363 9.436 18.498)
Ihave attatched a file.

---------- Post updated at 10:52 PM ---------- Previous update was at 10:43 PM ----------

---------- Post updated at 11:15 PM ---------- Previous update was at 10:52 PM ----------

@durden_tyler
if i run this on all 200 files,what change has to be made?since there are 200 files for 1 system and there are 120 systems
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

perl question - removing line from input file

In perl I want to do remove the top line of my input file then process the next line. I want to do something like head -1 inputfile > temp grep -v temp inputfile > newinputfile cp newinputfile inputfle is this possible in perl? (3 Replies)
Discussion started by: reggiej
3 Replies

2. Shell Programming and Scripting

ideas for perl script - strings,conditionals..etc

I have a matrix , how do I compare all the elements of a column , lets say I want to check if the columns contain the alphabets "S","H","A","R","A","T". and not "X"s. Lets say matrix looks something like this .. SSSXSH HHXXHA AAXXAT RRRXRS AAXTAR TTTTTA I can hard code it where... (4 Replies)
Discussion started by: sharatz83
4 Replies

3. UNIX for Dummies Questions & Answers

Help removing strings from one file that match any of the values in a second file.

Hello, I have a file that lists a few hundred values. Example: abca abcb abcc abcd I have a 2nd file with a few thousand lines. I need to remove every line from the 2nd file that contains any of the values listed in first file. Example of strings to delete: line1 *abca* end of... (1 Reply)
Discussion started by: upstate_boy
1 Replies

4. Shell Programming and Scripting

Can we pass an array of strings from a Perl Program to a Shell Script?

Hi Folks, The subject is my question: Can we pass an array of strings from a Perl Program to a Shell Script? Please provide some sample code. Thanks ---------- Post updated at 11:52 PM ---------- Previous update was at 11:43 PM ---------- I got it. Its here:... (0 Replies)
Discussion started by: som.nitk
0 Replies

5. Shell Programming and Scripting

Perl removing strings from a variable value

Dear all, I have a variable called $abc, which the value is something like below, *** *********** : ***** where * can be anything. I need to remove all but the final characters until last whitespace. example grd groupstudy : tutor6/7 becomes tutor6/7 something like if... (2 Replies)
Discussion started by: tententen
2 Replies

6. Shell Programming and Scripting

Replacing strings in perl script

HI all, These are examples of the original value from a variable $abc can be FastEthernet1/0 GigabitEthernet3/1 Serial1/0 If $abc is FastEthernet*/* (where * can be any number), replace $abc value to fa*/* (same number as the original value). GigabitEthernet becomes ga*/* and Serial... (2 Replies)
Discussion started by: tententen
2 Replies

7. Shell Programming and Scripting

Perl script to delimit size of strings

Hello, I have a huge file of over 2,00,00,00 strings in UTF8 format. I have managed to write a script in Perl which sorts them neatly as per their Unicode ranges. However I am now stuck with a script which will pipe out all strings between 3 and 20 letters/characters. I am not very good at... (2 Replies)
Discussion started by: gimley
2 Replies

8. Shell Programming and Scripting

PERL "filtering the log file removing the duplicates

Hi folks, I have a log file in the below format and trying to get the output of the unique ones based on mnemonic IN PERL. Could any one please let me know with the code and the logic ? Severity Mnemonic Log Message 7 CLI_SCHEDULER Logfile for scheduled CLI... (3 Replies)
Discussion started by: scriptscript
3 Replies

9. Programming

Perl script to merge cells in column1 which has same strings, for all sheets in a excel workbook

Perl script to merge cells ---------- Post updated at 12:59 AM ---------- Previous update was at 12:54 AM ---------- I am using below code to read files from a dir and print to excel. open(my $in, '<', $file) or die "Could not open file: $!"; my $rowCount = 0; my $colCount = 0;... (11 Replies)
Discussion started by: Jack_Bruce
11 Replies

10. Shell Programming and Scripting

Perl script to find process and exclude strings from the output

Hi team, I'm a newbie of Perl Script and looking to create a simple perl script that will run in the Linux system: 1) to find process, such as ps -ef | grep process name 2) to exclude strings from the output if it found, for instance if i see abc from usr process, then will exclude it from... (1 Reply)
Discussion started by: hoffman2503
1 Replies
WPP(1)							User Contributed Perl Documentation						    WPP(1)

NAME
WPP - The Web Preprocessor SYNOPSIS
wpp [POSIX or GNU style options] file ... DESCRIPTION
WPP is a small perl5 script that allows preprocessing of html files. It's useful for giving an uniform layout to different html pages. It allows you to define "variables", which are abbreviations for longer constructs, and include common html fragments. WPP provides four separate facilities that you can use as you fit: inclusion of templates, variables expansion, conditional generation and macro expansion. It can be used into cgi scripts for dynamic generation of pages. With less html code inside them you can make more flexible and readable cgi-scripts. WPP is distributed under the terms of the GNU General Public License (GPL). As such, you can use this program free of charge but there is no warranty. OPTIONS
-c FILE, --config=FILE Use FILE as config file (default is 'config'). -D CONST=VAL, -D CONST, --define CONST=VAL, --define CONST Declare a constant CONST with the optional associated value VAL. -d, --depend Generate dependencies for make. -F FL, --pre-filter=FL Preprocess input data through FL filters. Each filter should be separated by a pipe ('|') char. Example: wpp -F "filter1 | filter2 -opt" in.raw -f FL, --post-filter=FL Postprocess output data through FL filters. Each filter should be separated by a pipe ('|') char. Example: wpp -f "filter1 | filter2 -opt" in.raw -g, --debug Enable the debugging output of the internal parser. -h, --help Print the list of command line switches with a short description. -q, --quiet Run without printing any message and warning. -v, --version Print the version number of wpp and exit. -W all, --warn=all Enable printing all warnings. -W none, --warn=none Disable warnings. -W LEV, --warn=LEV Set warning level LEV: 0 = none 4 = notice 1 = fatal 5 = message 2 = error 6 = debug 3 = warning (*) 7 = all (*) default warning level -x, --xhtml Enable XHTML compliant output for built-in macros. - Read raw data from the standard input, html file is written to the standard output. AUTHOR
Marco Lamberto <lm AT sunnyspot DOT org> OFFICIAL WEB SITE
http://the.sunnyspot.org/wpp/ perl v5.8.3 2004-07-09 WPP(1)
All times are GMT -4. The time now is 07:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy