Mercurial > dotfiles
view unixSoft/bin/make-greek-tree.sh @ 439:2325dea339ca
smailq: vendor script to ease handling outgoing mail
From commit 5b83ca873f1dc9117a9b3590f0aa07fe2806fce9 of
http://git.sthu.org/repos/smailq.git - documented at
https://www.sthu.org/code/smailq.html.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Sat, 15 Jul 2017 12:57:17 -0400 |
parents | ced3c6a3e02a |
children |
line wrap: on
line source
# 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: # # https://svn.apache.org/repos/asf/subversion/trunk/subversion/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."