1Pamexec User Manual(0) Pamexec User Manual(0)
2
3
4
6 pamexec - Execute a shell command on each image in a Netpbm image
7 stream
8
9
11 pamexec
12
13 ["command"]
14
15 [netpbmfile]
16
17 [-check]
18
19 Minimum unique abbreviation of option is acceptable. You may use dou‐
20 ble hyphens instead of single hyphen to denote options. You may use
21 white space in place of the equals sign to separate an option name from
22 its value.
23
24
25
27 This program is part of Netpbm(1).
28
29 pamexec reads a Netpbm image stream as input. For each image, it runs
30 a specified shell command and supplies the image to it as Standard
31 Input (with a pipe).
32
33 netpbmfile is the file name of the input file, or - to indicate Stan‐
34 dard Input. The default is Standard Input.
35
36 Many Netpbm programs understand multimage Netpbm streams themselves, so
37 you don't need to use pamexec to run the program on the images in the
38 stream. Ideally, all Netpbm programs would have that capability, but
39 multi-image streams are a relatively recent invention, so older Netpbm
40 programs just process the first image in the stream and then stop.
41 Even recently written Netpbm programs work that way, since the authors
42 aren't aware of the multi-image possibility.
43
44 Another way to process a multi-image stream is to use pamsplit to
45 explode it into multiple files, one image per file. You can then
46 process those files.
47
48 To run your command on a subset of the images in the stream, use
49 pampick to select the desired images from the input stream and pipe the
50 result to pamexec.
51
52
53
55 -check This causes pamexec to exit without processing any further
56 images if the command has a nonzero exit status.
57
58
59
60
62 To make an animated GIF movie:
63
64 pamexec pamtogif myvideo.ppm | gifsicle --multifile >myvideo.gif
65
66
68 pamexec assumes all commands consume all of Standard Input. If yours
69 doesn't (perhaps it just exits when it's seen enough), you can buffer
70 through a temporary file like this:
71
72 pamexec "cat >/tmp/x; head -3 x" myvideo.ppm
73
74
76 pamexec was new in Netpbm 10.56 (September 2011).
77
78 Michael Pot wrote it, borrowing from pamsplit.
79
80
81
83 pamfile(1), pampick(1), pamsplit(1), pnm(1), pam(1), cat man page
84
86 This manual page was generated by the Netpbm tool 'makeman' from HTML
87 source. The master documentation is at
88
89 http://netpbm.sourceforge.net/doc/pamexec.html
90
91netpbm documentation 11 August 2011 Pamexec User Manual(0)