X-Reportbug-Version: 3.39-0.1
X-Debbugs-Cc: [EMAIL PROTECTED]
Package: findutils
Version: 4.4.0-2
Severity: minor
File: /usr/bin/find
Tags: patch
There's a bug in the manual page regarding the escape sequences; it's not "\",
it's "\0".
$ find /dev/bus/usb/001/001 -printf "\\" | od -Ax -tx1 -tc
find: warning: unrecognized escape "\"
000000 5c 00 00 00 00 00 00 00 00 00
\ \0 \0 \0 \0 \0 \0 \0 \0 \0
00000a
correct:
$ find /dev/bus/usb/001/001 -printf "\\0" | od -Ax -tx1 -tc
000000 00
\0
000001
Here's a patch:
# diff -u find.1.orig find.1
--- find.1.orig 2008-04-03 19:41:22.000000000 +0200
+++ find.1 2008-04-15 08:51:46.000000000 +0200
@@ -1164,7 +1164,7 @@
Horizontal tab.
.IP \ev
Vertical tab.
-.IP \e\0
+.IP \e0
ASCII NUL.
.IP \e\e
A literal backslash (`\e').
-- System Information:
Debian Release: lenny/sid
APT prefers testing
APT policy: (600, 'testing'), (50, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.22-1-686 (SMP w/1 CPU core)
Locale: LANG=de_AT.UTF-8, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8) (ignored:
LC_ALL set to de_AT.utf8)
Shell: /bin/sh linked to /bin/bash
Versions of packages findutils depends on:
ii libc6 2.7-10 GNU C Library: Shared libraries
findutils recommends no packages.
-- no debconf information
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]