Bug 11105

Summary: incorrect result from cut utility
Product: Sisyphus Reporter: Igor Muratov <migor>
Component: coreutilsAssignee: placeholder <placeholder>
Status: CLOSED NOTABUG QA Contact: qa-sisyphus
Severity: normal    
Priority: P2 CC: glebfm, ldv, php-coder, placeholder
Version: unstable   
Hardware: all   
OS: Linux   

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".