blob: 6789a6b974c47e9ac7bddf84898fc975cc9fdb60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/sh
DOTFILES_DIR=$(dirname $(readlink -f $0))
STOW="$DOTFILES_DIR/stow"
if [ "$#" -lt 2 ]
then
echo "usage: $(basename $0) tag file-to-adopt"
exit 1
fi
if [ -d $2 ]
then
TARGET="$DOTFILES_DIR/$1/$2"
if ! [ -d $TARGET ]
then
mkdir -p $TARGET
fi
mv $2/* $TARGET
$STOW $1
elif [ -f $2 ]
then
TARGET="$DOTFILES_DIR/$1/$(dirname $2)"
if ! [ -d $TARGET ]
then
mkdir -p $TARGET
fi
mv $2 $TARGET
$STOW $1
fi
|