about summary refs log tree commit diff
path: root/editor/pnmcat
blob: 5aaa03df8c1ab685736ce2ee91039b14dc695972 (plain) (blame)
1
2
3
4
5
6
7
8
9
#! /bin/sh

if test "$1" = '-version'; then
  pamcat -version
elif test "$1" = '--version'; then
  pamcat --version
else
  pamcat -extendplane "$@" | pamtopnm
fi