summaryrefslogtreecommitdiff
path: root/bin/usbskelhere
blob: b2e0ba799b3d88ef0b944d2e8b474dc0ae624e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
. $HOME/.shenv

skelhere ()
{
    usbpubkeys
    mkdir -p doc bin lib
    cp -RLf ~/lib/annex/big/skel/usb/* .
    cp ~/bin/{apple,dasl}-setup.sh bin
    cp -L ~/lib/pro.terminal lib
    cp -L "~/lib/annex/doc/sounds/Rainy Mood pomodoro.mp3" lib
    zip -j lib/spwhitton.zip  lib/*.reg bin/*
}

while true; do
    read -p "This might overwrite stuff in $(pwd).  Is that okay? " yn
    case $yn in
        [Yy]* ) skelhere; break;;
        [Nn]* ) exit;;
        * ) echo "Please answer yes or no.";;
    esac
done