about summary refs log tree commit diff stats
path: root/403code-point.mu
Commit message (Expand)AuthorAgeFilesLines
* 6710 - utf-8 encodingKartik Agaram2020-08-021-54/+34
* snapshot: encoding code-points to utf-8Kartik Agaram2020-08-021-0/+178
Thomas E. Dickey <dickey@invisible-island.net> 1997-11-07 12:30:00 -0500 snapshot of project "lynx", label v2-7-1ac_0-93' href='/ingrix/lynx-snapshots/commit/mkdirs.sh?id=b63d287c6f3e67f8574ca2155c661288bc7dcd05'>b63d287c ^
741e82fc ^
b63d287c ^

b6c832d0 ^
b63d287c ^













4525eb4b ^
1876fe93 ^
741e82fc ^












4525eb4b ^
b63d287c ^








1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
          

                                                                               




                                                  
                                                                               

           
         













                                                                             
                           
                                                                   












                                                                            
            








                          
#! /bin/sh
# $Id: mkdirs.sh,v 1.6 2007/03/25 22:29:46 tom Exp $
# -----------------------------------------------------------------------------
# mkinstalldirs --- make directory hierarchy
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
# Created: 1993-05-16
# Last modified: 1994-03-25
# Public domain
# -----------------------------------------------------------------------------

errstatus=0
umask 022

for file in ${1+"$@"} ; do
   set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
   shift

   pathcomp=
   for d in ${1+"$@"} ; do
     pathcomp="$pathcomp$d"
     case "$pathcomp" in
       -* ) pathcomp=./$pathcomp ;;
     esac

     if test ! -d "$pathcomp"; then
        echo "mkdir $pathcomp" 1>&2
        case "$pathcomp" in
          [abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]: )
            ;;               # DOSISH systems
          * )
            mkdir "$pathcomp"
            errstatus=$?
            if test $errstatus != 0
            then
               # may have failed if invoked in a parallel "make -j# install"
               if test -d "$pathcomp"
               then
                  errstatus=0
               fi
            fi
            ;;
        esac
     fi

     pathcomp="$pathcomp/"
   done
done

exit $errstatus

# mkinstalldirs ends here