# HG changeset patch # User Augie Fackler # Date 1459866079 14400 # Node ID 89c7236a0899cedc18058ea30f0cb9056107e21e # Parent 879df95a0578084399300e6aa97296cb45d0e3c9 make-greek-tree: import shell script I've used on and off for years diff --git a/unixSoft/bin/make-greek-tree.sh b/unixSoft/bin/make-greek-tree.sh new file mode 100755 --- /dev/null +++ b/unixSoft/bin/make-greek-tree.sh @@ -0,0 +1,31 @@ +# This is +# +# https://svn.apache.org/repos/asf/subversion/branches/1.6.x/www/repro-template.sh +# +# with subversion-specific bits removed. The resulting directory +# structure looks like this: +# +# http://svn.apache.org/repos/asf/subversion/trunk/tests/greek-tree.txt + +echo "### Making a Greek Tree for import..." +mkdir A +mkdir A/B/ +mkdir A/C/ +mkdir A/D/ +mkdir A/B/E/ +mkdir A/B/F/ +mkdir A/D/G/ +mkdir A/D/H/ +echo "This is the file 'iota'." > iota +echo "This is the file 'A/mu'." > A/mu +echo "This is the file 'A/B/lambda'." > A/B/lambda +echo "This is the file 'A/B/E/alpha'." > A/B/E/alpha +echo "This is the file 'A/B/E/beta'." > A/B/E/beta +echo "This is the file 'A/D/gamma'." > A/D/gamma +echo "This is the file 'A/D/G/pi'." > A/D/G/pi +echo "This is the file 'A/D/G/rho'." > A/D/G/rho +echo "This is the file 'A/D/G/tau'." > A/D/G/tau +echo "This is the file 'A/D/H/chi'." > A/D/H/chi +echo "This is the file 'A/D/H/omega'." > A/D/H/omega +echo "This is the file 'A/D/H/psi'." > A/D/H/psi +echo "### Done."