Sponsored Content
Top Forums Shell Programming and Scripting Trying to modify a print filter! Post 302181925 by djsal on Friday 4th of April 2008 12:53:07 PM
Old 04-04-2008
Trying to modify a print filter!

Ok, the filter looks like this.

Code:
awk ' BEGIN{printf ("^[E^[&l2a0o7.27C^[(s0p16.67h0T");} \
{ \
printf ("%s^M\n", $0); \
} \
END{printf ("^L^[E");}'



This is sending escape sequences to the printer. What I also would like to do is filter out certain pages. I only want the contant between two markers. Start Marker=1Q2Q3Q4Q, End Marker=5Q6Q7Q8Q. I also need the actual line that the marker is printing on, minus the marker, however, keeping the integrity of all the positions on that line.

Thanks in advance!

Last edited by Yogesh Sawant; 04-04-2008 at 02:40 PM.. Reason: added code tags
 

10 More Discussions You Might Find Interesting

1. AIX

Modify Print Orientation, Font and Pitch

I need to be able to change the font, pitch, and orientation when printing a text flat file. Any suggestions appreciated. (2 Replies)
Discussion started by: mad_dog
2 Replies

2. Shell Programming and Scripting

Filter by modify date.

I want to filter an "ls -al" command so it only shows me files with modify dates older than two weeks. What is the best way of doing this? (2 Replies)
Discussion started by: millerdc
2 Replies

3. Shell Programming and Scripting

Filter the column and print the result based on condition

Hi all This is my output of the some SQL Query TABLESPACE_NAME FILE_NAME TOTALSPACE FREESPACE USEDSPACE Free ------------------------- ------------------------------------------------------- ---------- --------- ---------... (2 Replies)
Discussion started by: jhon
2 Replies

4. Shell Programming and Scripting

Filter files and print

Hi, I need to filter and store the files ends with log extension in the array and need to write the file names in the array to a file. I need to use array to derive this solution. Please help me out. Thanks (2 Replies)
Discussion started by: Sekar1
2 Replies

5. Shell Programming and Scripting

Modify print of command "ls -l -R"

Hi to all, Some help please, I want to modify using awk the print showed by command "ls -l -R" from: /home/user1/Mydocs/Year/2010/July/Experiments: total 1608 -rw-r--r-- 1 user1 user1 1431 Feb 2 22:45 Experiments1.TAR -rw-r--r-- 1 user1 user1 923 Feb 2 22:45 Tests_Exp1.TXT... (4 Replies)
Discussion started by: cgkmal
4 Replies

6. Shell Programming and Scripting

AWK filter from file and print

Dear all, I am using awk to filter some data like this:- awk 'NR==FNR{a;next}($1 in a)' FS=":" filter.dat data.dat >! out.dat where the filter and input data look like this:- filter.dat... n_o00j_1900_40_007195350_0:n_o00j_1940_40_007308526... (3 Replies)
Discussion started by: atb299
3 Replies

7. Shell Programming and Scripting

awk Help: Filter Multiple Entry & print in one line.

AWK Gurus, data: srvhcm01 AZSCI srvhcm01 AZSDB srvhcm01 BZSDB srvhcm01 E2QDI31 srvhcm01 YPDCI srvhcm01 YPDDB srvhcm01 UV2FSCR srvhcm01 UV2FSBI srvhcm01 UV2FSXI srvhcm01 UV2FSUC srvhcm01 UV2FSEP srvhcm01 UV2FSRE srvhcm01 NASCI srvhcm01 NASDB srvhcm01 UV2FSSL srvhcm01 UV2FSDI (7 Replies)
Discussion started by: rveri
7 Replies

8. Shell Programming and Scripting

Still print hello2, how to modify this

I want it not print hello2,but for now it print, how could I do,not I want if exit 8 then exit to the whole shell, and don't want to move "exit" from the {} #!/bin/sh start_test() { { echo "hello1" exit 8 } |tee -a qqq echo... (3 Replies)
Discussion started by: yanglei_fage
3 Replies

9. UNIX for Dummies Questions & Answers

How to create a print filter that print text & image?

Currently, I have a print filter that takes a text file, that convert it into PCL which then gets to a HP printer. This works. Now I need to embedded a image file within the text file. I'm able to convert the image file into PCL and I can cat both files together to into a single document... (1 Reply)
Discussion started by: chedlee88-1
1 Replies

10. UNIX for Dummies Questions & Answers

Filter records in a huge text file from a filter text file

Hi Folks, I have a text file with lots of rows with duplicates in the first column, i want to filter out records based on filter columns in a different filter text file. bash scripting is what i need. Data.txt Name OrderID Quantity Sam 123 300 Jay 342 498 Kev 78 2500 Sam 420 50 Vic 10... (3 Replies)
Discussion started by: tech_frk
3 Replies
Bio::Map::LinkageMap(3pm)				User Contributed Perl Documentation				 Bio::Map::LinkageMap(3pm)

NAME
Bio::Map::LinkageMap - A representation of a genetic linkage map. SYNOPSIS
use Bio::Map::LinkageMap; # create a new map my $map = Bio::Map::LinkageMap->new(-name => 'Chads Superterriffic Map', -type => 'Linkage', -units=> 'cM'); # create the location of a marker for that map my $position = Bio::Map::LinkagePosition->new( -positions => 1, -distance => "22.3"); # create a marker and place it at that position my $marker = Bio::Map::Marker::Microsatellite->new( -name => 'SuuuperMarker', -position => $position); # place that marker on that map $map->add_element($marker); # done! DESCRIPTION
This object describes the basic functionality of a genetic linkage map in Bioperl. Each 'position' can have one or more markers that map some number of units from the markers at the previous position. FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to the Bioperl mailing list. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track of the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHOR - Chad Matsalla Email bioinformatics1@dieselwurks.com CONTRIBUTORS
Lincoln Stein lstein@cshl.org Heikki Lehvaslaiho heikki-at-bioperl-dot-org Jason Stajich jason@bioperl.org Sendu Bala bix@sendu.me.uk APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ new Title : new Usage : my $linkage_map = Bio::Map::LinkageMap->new(); Function: Builds a new Bio::Map::LinkageMap object Returns : Bio::Map::LinkageMap Args : -name => the name of the map (string) [optional] -type => the type of this map (string, defaults to Linkage) [optional] -species => species for this map (Bio::Species) [optional] -units => the map units (string, defaults to cM) [optional] -elements=> elements to initialize with (arrayref of Bio::Map::MappableI objects) [optional] -uid => Unique ID of this map length Title : length Usage : my $length = $map->length(); Function: Retrieves the length of the map. In the case of a LinkageMap, the length is the sum of all marker distances. Returns : An integer representing the length of this LinkageMap. Will return 0 if length is not calculateable Args : None. add_element($marker) Title : add_element($marker) Usage : $map->add_element($marker) Function: Add a Bio::Map::MappableI object to the Map Returns : none Args : Bio::Map::MappableI object Notes : It is strongly recommended that you use a Bio::Map::LinkagePosition as the position in any Bio::Map::Mappable that you create to place on this map. Using some other Bio::Map::Position might work but might be unpredictable. N.B. I've added Bio::Map::OrderedPosition which should achieve similar things from LinkagePosition and will work for RH markers too. perl v5.14.2 2012-03-02 Bio::Map::LinkageMap(3pm)
All times are GMT -4. The time now is 09:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy