and some fixes for original blorp
[feisty_meow.git] / scripts / customize / fred / scripts / games / save_f76_pics.sh
1 #!/bin/bash
2
3 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
4
5 if [[ "$(hostname)" =~ clemems* ]]; then
6   character=clemens_pc
7 fi
8 if [[ "$(hostname)" =~ orpheus* ]]; then
9   character=spoonburg_pc
10 fi
11
12 src_dir="~/linx/wind_goods/My\ Games/Fallout\ 76/Photos/8f99c06443f04f6f8270604369bb78eb"
13 dest_dir="/z/walrus/media/pictures/metaverse/fallout_76/${character}"
14
15 if [ ! -d "$src_dir" ]; then
16   echo "Could not find the source directory: $src_dir"
17   exit 1
18 fi
19 if [ ! -d "$dest_dir" ]; then
20   echo "Could not find the destination directory: $dest_dir"
21   exit 1
22 fi
23
24 netcp "$src_dir"/*[0-9].png "$dest_dir"/
25
26