Package: gifsicle
Version: 1.60-1
Severity: wishlist
Tags: patch
Manual page reads:
INTRODUCTION
Without options, gifsicle acts like a filter: you feed it a GIF on
standard input, and it writes that
GIF on standard output. That means these two commands do the same thing:
% gifsicle < in.gif > out.gif
% gifsicle < in.gif | gifsicle | gifsicle > out.gif
The attached patch suggest using plain lines, so that %-csh specific
prompt is not used.
gifsicle < in.gif > out.gif
gifsicle < in.gif | gifsicle | gifsicle > out.gif
-- System Information:
Debian Release: squeeze/sid
APT prefers testing
APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages gifsicle depends on:
ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib
ii libice6 2:1.0.6-2 X11 Inter-Client Exchange library
ii libsm6 2:1.1.1-1 X11 Session Management library
ii libx11-6 2:1.3.3-4 X11 client-side library
gifsicle recommends no packages.
gifsicle suggests no packages.
-- debconf-show failed
>From a228d5b59306c44967b38ea73e37110704d8e7d2 Mon Sep 17 00:00:00 2001
From: Jari Aalto <[email protected]>
Date: Sat, 11 Dec 2010 12:27:50 +0200
Subject: [PATCH] gifsicle.1: Remove csh-specific (%) prompts
Organization: Private
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit
Signed-off-by: Jari Aalto <[email protected]>
---
gifsicle.1 | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/gifsicle.1 b/gifsicle.1
index 32a74d3..2d1e442 100644
--- a/gifsicle.1
+++ b/gifsicle.1
@@ -62,8 +62,8 @@ Without options,
acts like a filter: you feed it a GIF on standard input, and it writes that
GIF on standard output. That means these two commands do the same thing:
.Es
-% \fBgifsicle < in.gif > out.gif\fR
-% \fBgifsicle < in.gif | gifsicle | gifsicle > out.gif\fR
+ \fBgifsicle < in.gif > out.gif\fR
+ \fBgifsicle < in.gif | gifsicle | gifsicle > out.gif\fR
.Ee
Not too interesting. Most times you'll tell
.B gifsicle
@@ -71,7 +71,7 @@ to alter its inputs by giving it command line options. The
.Op \-i
option, for example, tells it to interlace its input files:
.Es
-% \fBgifsicle -i < pic.gif > interlaced-pic.gif\fR
+ \fBgifsicle -i < pic.gif > interlaced-pic.gif\fR
.Ee
.PP
To modify GIF files in place, you should use the
@@ -83,7 +83,7 @@ will modify the files you specify instead of writing a new file to the
standard output. To interlace all the GIFs in the current directory, you
could say:
.Es
-% \fBgifsicle \-\-batch \-i *.gif
+ \fBgifsicle \-\-batch \-i *.gif
.Ee
.PP
.B gifsicle
@@ -92,7 +92,7 @@ create an animation is to give more than one input file, which
.B gifsicle
will combine to create a ``flipbook'' animation:
.Es
-% \fBgifsicle pic1.gif pic2.gif pic3.gif > animation.gif\fR
+ \fBgifsicle pic1.gif pic2.gif pic3.gif > animation.gif\fR
.Ee
Use options like
.Op \-\-delay ", " \-\-loopcount ", and " \-\-optimize
--
1.7.2.3