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
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)
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)
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)
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)
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)
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)