Bug 11105 - incorrect result from cut utility
Summary: incorrect result from cut utility
Status: CLOSED NOTABUG
Alias: None
Product: Sisyphus
Classification: Development
Component: coreutils (show other bugs)
Version: unstable
Hardware: all Linux
: P2 normal
Assignee: placeholder@altlinux.org
QA Contact: qa-sisyphus
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-03-15 11:38 MSK by Igor Muratov
Modified: 2007-04-22 22:40 MSD (History)
4 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Igor Muratov 2007-03-15 11:38:01 MSK
[migor@clash migor]$ echo a b | cut -d' ' -f3 

[migor@clash migor]$ echo a b | cut -d' ' -f3-

[migor@clash migor]$ echo a | cut -d' ' -f3
a
[migor@clash migor]$ echo a | cut -d' ' -f3-
a
Comment 1 Dmitry V. Levin 2007-04-21 04:02:14 MSD
Described behaviour conforms to documentation, see "info cut".