summary refs log tree commit diff stats
path: root/adopt
blob: a0a210fa69648854efc87acdf54f73c590df4707 (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
#!/bin/sh
DOTFILES_DIR=$(dirname $(readlink -f $0))

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