home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 200.img / SCO386X3.TD0 / bin / dirname < prev    next >
Encoding:
Text File  |  1987-04-13  |  550 b   |  27 lines

  1. :
  2. #
  3. #    @(#) dirname.sh 1.1 86/12/18 
  4. #
  5. #    Copyright (C) Microsoft Corporation, 1983
  6. #
  7. #    This Module contains Proprietary Information of Microsoft
  8. #    Corporation and AT&T, and should be treated as Confidential.
  9. #
  10. : '
  11. #***    dirname -- deliver directory portion of pathname
  12. #
  13. #    dirname  string
  14. #
  15. #    MODIFICATION HISTORY
  16. #    M000    18 Apr 83    andyp
  17. #    - 3.0 upgrade.  No changes.
  18. #    M001    11 Apr 84    sco!blf
  19. #    - Fix it so it works in more cases.
  20. : '
  21.  
  22. PATH=/bin:/usr/bin
  23. exec expr \
  24.   "${1-.}/" : '\(/\)[^/]*/$' \
  25.   \| "${1-.}/" : '\(.*[^/]\)//*[^/][^/]*//*$' \
  26.   \| .
  27.