~ubuntu-branches/ubuntu/trusty/tla/trusty

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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# make-links - create a shadow-tree of symlinks
# 
################################################################
# Copyright (C) 2002 Tom Lord
# 
# See the file "COPYING" for further information about
# the copyright and warranty status of this work.
# 

set -e 

bug_mail="@BUGMAIL@"

################################################################
# special options
# 
# Some options are special:
# 
#	--version | -V
#	--help | -h
# 
if test $# -ne 0 ; then

  for opt in "$@" ; do
    case $opt in

      --version|-V) printf "make-links 2002-1 from regexps.com\\n"
		    printf "\\n"
		    printf "Copyright 2002, Tom Lord\\n"
		    printf "\\n"
		    printf "This is free software; see the source for copying conditions.\\n"
		    printf "There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\\n"
		    printf "PARTICULAR PURPOSE.\\n"
		    printf "\\n"
		    printf "Report bugs to $bug_mail.\n"
		    printf "\\n"
		    exit 0
		    ;;

      --help|-h)
		printf "create a shadow tree of symbolic links\\n"
		printf "usage: make-links [options] from-dir to-dir\\n"
		printf "\\n"
		printf " -V --version                  print version info\\n"
		printf " -h --help                     display help\\n"
		printf "\\n"
		printf " -n                            print a list of links, but\\n"
		printf "                               don't actually create them\\n"
		printf "\\n"
		printf " -f                            pass -f to ln\\n"
		printf " -q                            don't print the list of links\\n"
		printf "\\n"
		printf "Create symbolink links in TO-DIR to all regular files in\\n"
		printf "FROM-DIR, creating new subdirectories in TO-DIR as needed.\\n"
		printf "\\n"
		exit 0
      		;;

      *)
		;;
    esac
  done
fi

################################################################
# Ordinary Options
# 
# 

no_links=
quiet=
force=

while test $# -ne 0 ; do

  case "$1" in 

    -n)		shift
    		no_links=-n
		;;

    -q)		shift
    		quiet=-q
		;;

    -f)         shift
                force=-f
                ;;

    --)			shift
    			break
			;;
			
    -*)			printf "make-links: unrecognized option (%s)\\n" "$1" 1>&2
			printf "try --help\\n" 1>&2
			exit 1
			;;

    *)			break
    			;;

  esac

done



################################################################
# Ordinary Arguments
# 

if test $# -ne 2 ; then
  printf "usage: make-links [options] from-dir to-dir\\n" 1>&2
  printf "try --help\\n" 1>&2
  exit 1
fi

from_dir="$1"
shift

to_dir="$1"
shift

################################################################
# Sanity Check and Process Defaults
# 

here="`pwd`"

cd "$here"
cd "$from_dir"
from_dir="`pwd`"

cd "$here"
cd "$to_dir"
to_dir="`pwd`"

################################################################
# Do It
# 

if test ! -z "$no_links" ; then
  if test ! -z "$quiet" ; then
    exit 0
  fi

  cd "$from_dir"
  find . -type f 
  exit 0
fi

# Really do it
# 

cd "$to_dir"

( cd "$from_dir" ; \
  find . -type d \
  | awk '{ print "mkdir -p \"" $0 "\"" }' ; \
  find . -type f \
  | awk -vquiet="$quiet" \
	-vfrom_dir="$from_dir" \
        -vforce="$force" \
    '{
       if (quiet == "")
         {
	   print "printf \"%s\\\\n\" \"" $0 "\"";
	 }
       print "ln -s " force " \"" from_dir "/" $0 "\" \"" $0 "\"";
     }' ) \
| sh -e 


# arch-tag: Tom Lord Fri Apr  5 08:36:26 2002 (links/make-links.sh.in)
#