You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

install 208B

123456789101112
  1. #! /usr/bin/env bash
  2. dir="$(dirname $(readlink -f "${0}"))"
  3. for file in gitconfig
  4. do
  5. if [ -f ~/."${file}" ]
  6. then
  7. mv ~/."${file}" ~/."${file}.old"
  8. fi &&
  9. ln -sf "${dir}/${file}" ~/."${file}"
  10. done