Mercurial > ec-dotfiles
view setup @ 8:b5d0c1892294
Forgot to add remover for inputrc
author | Edho Prima Arief <me@myconan.net> |
---|---|
date | Mon, 19 Jul 2010 16:49:38 +0700 |
parents | 2ae8e6222b9d |
children | 73123c5ef818 |
line wrap: on
line source
#!/bin/sh install() { uninstall #create symlinks linker "tcsh" ".tcsh_init" linker "tmux" ".tmux.conf" linker "hg" ".hgrc" linker "vim" ".vimrc" linker "inputrc" ".inputrc" linker "bin" "bin-ec" #modify cshrc echo '[ -r "${HOME}/.tcsh_init" ] && source "${HOME}/.tcsh_init" #ECCORE_TCSH' >> "${HOME}/.cshrc" } linker() { echo "Creating symlink: ${1} => ~/${2}" ln -fs "${PWD}/${1}" "${HOME}/${2}" } uninstall_tcsh() { if [ -e "${HOME}/.cshrc" ]; then grep -v '#ECCORE_TCSH' "${HOME}/.cshrc" > .cleancshrc mv .cleancshrc "${HOME}/.cshrc" fi } uninstall() { for i in .tcsh_init .tmux.conf .hgrc .vimrc .inputrc bin-ec; do if [ -e "${HOME}/${i}" ]; then echo "Removing file: ~/${i}" rm -f "${HOME}/${i}" fi done uninstall_tcsh } case "$1" in install) install ;; uninstall) uninstall ;; esac