15 lines
369 B
Bash
15 lines
369 B
Bash
#!/bin/bash
|
|
|
|
echo "Usage: setup.sh"
|
|
echo "Example: setup.sh"
|
|
|
|
echo "######## 安装 ##################"
|
|
mv ~/.bashrc ~/.bashrc.backup
|
|
ln -s ~/linux.config/.emacs ~/
|
|
ln -s ~/linux.config/.emacs.lisp ~/
|
|
ln -s ~/linux.config/.bashrc ~/
|
|
ln -s ~/linux.config/.bash_profile ~/
|
|
. ~/.bashrc
|
|
git config --global credential.helper cache
|
|
echo "######## 完毕 ##################"
|