14 lines
405 B
Bash
Executable File
14 lines
405 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Warning: This will force overwrite your .bashrc and so on.
|
|
If you want to exit, please press Ctrl+C to exit.
|
|
Press the Enter to continue."
|
|
read _
|
|
|
|
export Profile_PATH=$PWD
|
|
ln -sf $Profile_PATH/bash/.bashrc ~/.bashrc
|
|
ln -sf $Profile_PATH/fish/config.fish ~/.config/fish/config.fish
|
|
ln -sf $Profile_PATH/vim/.vimrc ~/.vimrc
|
|
ln -sf $Profile_PATH/tmux/.tmux.conf ~/.tmux.conf
|
|
|
|
echo "Finished" |