blob: 5b7e4b488a7dc36f19c568a45cbbd86cfe387baa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#! /bin/bash
# This script tests: pamtopnm
# Also requires: pgmtopgm ppmtoppm
pamtopnm -plain testgrid.pbm
pgmtopgm < testgrid.pbm | pamtopnm -plain
ppmtoppm < testgrid.pbm | pamtopnm -plain | \
head -n11
|