X-Git-Url: http://git.onelab.eu/?p=iproute2.git;a=blobdiff_plain;f=doc%2Fdo-psnup;fp=doc%2Fdo-psnup;h=0000000000000000000000000000000000000000;hp=2dce848e267debbf83fda00e31845e6e776182fe;hb=3331a68859fd71047bb1f309048960b48eab2d83;hpb=2bd4a72f2100be7ad7d9518cb1d49bb2a5b71994 diff --git a/doc/do-psnup b/doc/do-psnup deleted file mode 100755 index 2dce848..0000000 --- a/doc/do-psnup +++ /dev/null @@ -1,16 +0,0 @@ -#! /bin/bash -# $1 = Temporary file . "string" -# $2 = File to process . "string" -# $3 = Page size . ie: a4 , letter ... "string" -# $4 = Number of pages to fit on a single sheet . "numeric" - -if type psnup >&/dev/null; then - echo "psnup -$4 -p$3 $1 $2" - psnup -$4 -p$3 $1 $2 -elif type psmulti >&/dev/null; then - echo "psmulti $1 > $2" - psmulti $1 > $2 -else - echo "cp $1 $2" - cp $1 $2 -fi