Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pnmflip(1) [ultrix man page]

pnmflip(1)                                                    General Commands Manual                                                   pnmflip(1)

NAME
pnmflip - perform one or more flip operations on a portable anymap SYNOPSIS
pnmflip [-leftright|-lr] [-topbottom|-tb] [-transpose|-xy] [-rotate90|-r90|-ccw ] [-rotate270|-r270|-cw ] [-rotate180|-r180] [pnmfile] DESCRIPTION
Reads a portable anymap as input. Performs one or more flip operations, in the order specified, and writes out a portable anymap. OPTIONS
The flip operations available are: left for right (-leftright or -lr); top for bottom (-topbottom or -tb); and transposition (-transpose or -xy). In addition, some canned concatenations are available: -rotate90 or -ccw is equivalent to -transpose -topbottom; -rotate270 or -cw is equivalent to -transpose -leftright; and -rotate180 is equivalent to -leftright -topbottom. All flags can be abbreviated to their shortest unique prefix. SEE ALSO
pnmrotate(1), pnm(5) AUTHOR
Copyright (C) 1989 by Jef Poskanzer. 25 July 1989 pnmflip(1)

Check Out this Related Man Page

pnmcat(1)						      General Commands Manual							 pnmcat(1)

NAME
pnmcat - concatenate portable anymaps SYNOPSIS
pnmcat [-white|-black] -leftright|-lr [-jtop|-jbottom] pnmfile pnmfile ... pnmcat [-white|-black] -topbottom|-tb [-jleft|-jright] pnmfile pnmfile ... DESCRIPTION
Reads portable anymaps as input. Concatenates them either left to right or top to bottom, and produces a portable anymap as output. pamdice splits an image up into smaller ones. pnmtile concatenates a single input image to itself repeatedly. OPTIONS
If the anymaps are not all the same height (left-right) or width (top-bottom), the smaller ones have to be justified with the largest. By default, they get centered, but you can specify one side or the other with one of the -j* flags. So, -topbottom -jleft would stack the anymaps on top of each other, flush with the left edge. The -white and -black flags specify what color to use to fill in the extra space when doing this justification. If neither is specified, the program makes a guess. All flags can be abbreviated to their shortest unique prefix. SEE ALSO
pamdice(1), pnmtile(1), pamcut(1), pnm(5) AUTHOR
Copyright (C) 1989 by Jef Poskanzer. 12 March 1989 pnmcat(1)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

transpose command

I need to transpose data from one row to one column. If there is any idea to do it would be helpful. example of input data 314.16177368164102, 314.71533203125, 315.208740234375 wantted output data 314.16177368164102 314.71533203125 315.208740234375 Thank you so much for any advance... (3 Replies)
Discussion started by: su_in99
3 Replies

2. Shell Programming and Scripting

How to transpose data elements in awk

Hi, I have an input data file :- Test4599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,Rain Test90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,Not Rain etc.... I wanted to transpose these data to:-... (2 Replies)
Discussion started by: ahjiefreak
2 Replies

3. Shell Programming and Scripting

Transpose Rows

Hi, Am trying to transpose a set of rows into a set of comma separated values. For eg. if the output of ps -ef | tail +2 | awk 'BEGIN{ FS=" " } { print $2 }' is 0 1 3 4 I need to transpose it to - '0','1','3','4' Am currently trying - (4 Replies)
Discussion started by: iamwha1am
4 Replies

4. Shell Programming and Scripting

Transpose timestamp based on column values and calculate time difference

Hello Expert, I need to transpose Date-Timestamp based on same column values and calculate time difference. The input file would be as below and required output is mentioned in the bottom INPUT File ======== 08/23/2012 12:36:09 JOB_5340 08/23/2012 12:36:14 JOB_5340 08/23/2012... (2 Replies)
Discussion started by: asnandhakumar
2 Replies

5. Shell Programming and Scripting

File transpose problem

Hi Friends, I have a file with a structure like this: <file1.csv> field1,field2,field3,field4,field5,field6,field7,field8,field9,field10,field11,field12 Few Salient points on the file's structure (1)The fields from field1 to field6 is fixed and they would always be present in the file... (2 Replies)
Discussion started by: mehimadri12
2 Replies