6 if [ -z "$base" ]; then
7 echo "please specify the working directory"
13 echo "creating basic layout."
15 mkdir bin dev sys task mnt lib usr \
18 if [ -n "${content}" ]; then
19 echo "copying contents"
21 cp -R "${content}"/* .
23 echo "Note: no content is specified, only basic layout is created"\
24 "You may need to add them later"
28 echo "ownership set to root:root"
30 chown -R root:root . \