Mercurial > dotfiles
comparison unixSoft/bin/make-greek-tree.sh @ 401:89c7236a0899
make-greek-tree: import shell script I've used on and off for years
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 05 Apr 2016 10:21:19 -0400 |
parents | |
children | ced3c6a3e02a |
comparison
equal
deleted
inserted
replaced
400:879df95a0578 | 401:89c7236a0899 |
---|---|
1 # This is | |
2 # | |
3 # https://svn.apache.org/repos/asf/subversion/branches/1.6.x/www/repro-template.sh | |
4 # | |
5 # with subversion-specific bits removed. The resulting directory | |
6 # structure looks like this: | |
7 # | |
8 # http://svn.apache.org/repos/asf/subversion/trunk/tests/greek-tree.txt | |
9 | |
10 echo "### Making a Greek Tree for import..." | |
11 mkdir A | |
12 mkdir A/B/ | |
13 mkdir A/C/ | |
14 mkdir A/D/ | |
15 mkdir A/B/E/ | |
16 mkdir A/B/F/ | |
17 mkdir A/D/G/ | |
18 mkdir A/D/H/ | |
19 echo "This is the file 'iota'." > iota | |
20 echo "This is the file 'A/mu'." > A/mu | |
21 echo "This is the file 'A/B/lambda'." > A/B/lambda | |
22 echo "This is the file 'A/B/E/alpha'." > A/B/E/alpha | |
23 echo "This is the file 'A/B/E/beta'." > A/B/E/beta | |
24 echo "This is the file 'A/D/gamma'." > A/D/gamma | |
25 echo "This is the file 'A/D/G/pi'." > A/D/G/pi | |
26 echo "This is the file 'A/D/G/rho'." > A/D/G/rho | |
27 echo "This is the file 'A/D/G/tau'." > A/D/G/tau | |
28 echo "This is the file 'A/D/H/chi'." > A/D/H/chi | |
29 echo "This is the file 'A/D/H/omega'." > A/D/H/omega | |
30 echo "This is the file 'A/D/H/psi'." > A/D/H/psi | |
31 echo "### Done." |