cvs commit: src/bin/sh options.c

Garance A Drosehn gad at FreeBSD.org
Wed Feb 16 05:17:59 GMT 2005


gad         2005-02-16 05:17:58 UTC

  FreeBSD src repository

  Modified files:
    bin/sh               options.c 
  Log:
  Change /bin/sh so *it* implements the processing needed for scripts to
  work as expected when they have a "shebang line" of:
  
       #!/bin/sh -- # -*- perl -*- -p
  
  This specific line is recommended in some perl documentation, and I think
  I've seen similar lines in documentation for ruby and python.  Those
  write-ups expect `sh' to ignore everything after the '--' if the first
  thing after the '--' is a '#'.  See chapter 19, "The Command-Line Interface"
  in 3rd edition of "Programming Perl", for some discussion of why perl
  recommends using this line in some circumstances.
  
  The above line does work on solaris, irix and aix (as three data points),
  and it used to work on FreeBSD by means of a similar patch to execve().
  However, that change to execve() effected *all* shells (which caused
  other problems), and that processing was recently removed.
  
  PR:             16393  (the original request to fix the same issue)
  Reviewed by:    freebsd-current (looking at a slightly different patch)
  MFC after:      1 week
  
  Revision  Changes    Path
  1.22      +43 -11    src/bin/sh/options.c


More information about the cvs-src mailing list