Bug 199741 - tail(1) fails to parse plus-sign argument, reports error
Summary: tail(1) fails to parse plus-sign argument, reports error
Keywords:
Status: CLOSED NOTABUG
Alias: None
Product: Fedora
Classification: Fedora
Component: coreutils
Version: 5
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Tim Waugh
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2006-07-21 17:58 UTC by David Rabson
Modified: 2007-11-30 22:11 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2006-07-24 09:13:49 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description David Rabson 2006-07-21 17:58:19 UTC
Description of problem:

  tail(1) fails to parse plus-sign argument; reports error

Version-Release number of selected component (if applicable):

  5.93

How reproducible:

  /bin/echo "bad\ngood" | tail +2


should yield "good," instead gives an error message about not finding
a file called "+2".



  
Actual results:
  tail: cannot open `+2' for reading: No such file or directory

  
Expected results:
  good


Additional info:

It's possible this originates in an argument-parsing library.

This is an urgent bug on submitter's system, since it breaks
hundreds of local shell scripts.

Comment 1 David Rabson 2006-07-21 18:03:26 UTC
Correction to procedure to reproduce bug:

/bin/echo -e "bad\ngood" | tail +2


--



Comment 2 Tim Waugh 2006-07-24 09:13:49 UTC
The correct syntax for this is "tail -n +2 f".  You can get the old syntax
(which does not conform to the current POSIX spec) back like this:

export _POSIX2_VERSION=199209

See the info page aobut this:

  info coreutils "Standards Conformance"


Note You need to log in before you can comment on or make changes to this bug.