fcefd5de0f621d9fa400b2c6aae7ed0714fa1c2e
[feisty_meow.git] / scripts / customize / fred / scripts / disk_synch / update_barkuptree.sh
1 #!/bin/bash
2
3 # updates the mounted barkuptree drive with stuff on wildmutt.
4 # very specific currently.
5
6 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
7
8 export BARKY=/media/fred/barkuptreedrive
9
10 # copy up the archived bluray discs, and possibly future archived formats.
11 netcp /z/archons/* $BARKY/bkup_archons/
12 test_or_die "synching archons"
13
14 # copy over our somewhat attenuated but still important walrus archives.
15 netcp /z/walrus/* $BARKY/walrus/ 
16 test_or_die "synching walrus"
17
18 # copy all the music files for future reference.
19 netcp /z/musix/* $BARKY/musix/
20 test_or_die "synching musix"
21
22 # back up the photo archives.
23 netcp /z/imaginations/* $BARKY/imaginations/
24 test_or_die "synching imaginations"
25
26