home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / lib / trn / makedir.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1992-03-25  |  1.4 KB  |  66 lines

  1. #!/bin/sh
  2. # $Id: makedir.SH,v 4.4 1991/09/09 20:23:31 sob Exp sob $
  3. # $Log: makedir.SH,v $
  4. # Revision 4.4  1991/09/09  20:23:31  sob
  5. # release 4.4
  6. #
  7. #
  8. # This software is Copyright 1991 by Stan Barber. 
  9. #
  10. # Permission is hereby granted to copy, reproduce, redistribute or otherwise
  11. # use this software as long as: there is no monetary profit gained
  12. # specifically from the use or reproduction or this software, it is not
  13. # sold, rented, traded or otherwise marketed, and this copyright notice is
  14. # included prominently in any copy made. 
  15. #
  16. # The author make no claims as to the fitness or correctness of this software
  17. # for any use whatsoever, and it is provided as is. Any use of this software
  18. # is at the user's own risk. 
  19.  
  20. export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh $0; kill $$)
  21.  
  22. case $# in
  23.   0)
  24.     /bin/echo "makedir pathname filenameflag"
  25.     exit 1
  26.     ;;
  27. esac
  28.  
  29. : guarantee one slash before 1st component
  30. case $1 in
  31.   /*) ;;
  32.   *)  set ./$1 $2 ;;
  33. esac
  34.  
  35. : strip last component if it is to be a filename
  36. case X$2 in
  37.   X1) set `/bin/echo $1 | /bin/sed 's:\(.*\)/[^/]*$:\1:'` ;;
  38.   *)  set $1 ;;
  39. esac
  40.  
  41. : return reasonable status if nothing to be created
  42. if /bin/test -d "$1" ; then
  43.     exit 0
  44. fi
  45.  
  46. list=''
  47. while true ; do
  48.     case $1 in
  49.     */*)
  50.     list="$1 $list"
  51.     set `echo $1 | /bin/sed 's:\(.*\)/:\1 :'`
  52.     ;;
  53.     *)
  54.     break
  55.     ;;
  56.     esac
  57. done
  58.  
  59. set $list
  60.  
  61. for dir do
  62.     /bin/mkdir $dir >/dev/null 2>&1
  63. done
  64.