20 lines
551 B
Bash
Executable File
20 lines
551 B
Bash
Executable File
#!/bin/bash
|
|
bash_cfg_path=~/.config/bash
|
|
|
|
touch ~/.inputrc
|
|
touch ~/.bash_profile
|
|
touch ~/.bashrc
|
|
touch ~/.bash_aliases
|
|
touch ~/.bash_private
|
|
touch ~/.bash_exports
|
|
touch ~/.bash_prompt
|
|
|
|
mkdir -p "$bash_cfg_path"
|
|
ln -s ~/.inputrc "$bash_cfg_path/inputrc"
|
|
ln -s ~/.bash_profile "$bash_cfg_path/bash_profile"
|
|
ln -s ~/.bashrc "$bash_cfg_path/bashrc"
|
|
ln -s ~/.bash_aliases "$bash_cfg_path/bash_aliases"
|
|
ln -s ~/.bash_private "$bash_cfg_path/bash_private"
|
|
ln -s ~/.bash_exports "$bash_cfg_path/bash_exports"
|
|
ln -s ~/.bash_prompt "$bash_cfg_path/bash_prompt"
|