source: gs3-installations/computing50/trunk/sites/computing50/collect/celebrating-50-years/prepare/03-RSYNC.sh@ 37504

Last change on this file since 37504 was 37504, checked in by davidb, 13 months ago

Added in design-show directory

  • Property svn:executable set to *
File size: 616 bytes
Line 
1#!/bin/bash
2
3if [ ! -d ../import/Shirts ] ; then
4 echo "Making directory:"
5 echo " ../import/Shirts"
6 mkdir "../import/Shirts"
7fi
8
9rsync -pav Shirts/* ../import/Shirts/.
10
11
12if [ ! -d ../import/design-show ] ; then
13 echo "Making directory:"
14 echo " ../import/design-show"
15 mkdir "../import/design-show"
16fi
17
18rsync -pav design-show/* ../import/design-show/.
19
20
21#
22# Create .item files first ?????
23#
24
25#if [ ! -d ../import/Lab\ manuals ] ; then
26# echo "Making directory:"
27# echo " ../import/Lab manuals"
28# mkdir ../import/Lab\ manuals
29#fi
30#
31#rsync -pav Lab\ manuals/* ../import/Lab\ manuals/.
32
Note: See TracBrowser for help on using the repository browser.