您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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