home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / file / managers / git-4.3 / git-4 / git-4.3.7 / src / gitredir < prev    next >
Encoding:
Text File  |  1995-07-08  |  764 b   |  26 lines

  1. #!/bin/sh
  2.  
  3. ###############################################################################
  4. #                                                                             #
  5. #                GNU Interactive Tools 4.3.7 redirection script               #
  6. #               Copyright (C) 1994 Free Software Foundation, Inc.             #
  7. #                   Written by Tudor Hulubei and Andrei Pitis.                #
  8. #                                                                             #
  9. ###############################################################################
  10.  
  11. name=`basename $0`
  12.  
  13. if test "$#" -eq 0; then
  14.     echo "$name: GIT internal script" >&2
  15.     exit 255
  16. fi
  17.  
  18.  
  19. $@ | (IFS=
  20.       while read line
  21.       do
  22.           echo $line >&2
  23.       done)
  24.  
  25. exit 1
  26.