mirror of
https://github.com/rwxrob/dot
synced 2024-11-04 18:00:18 +00:00
15 lines
347 B
Bash
Executable File
15 lines
347 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
ln -sf "$PWD/.bashrc" "$HOME/.bashrc"
|
|
ln -sf "$PWD/.dircolors" "$HOME/.dircolors"
|
|
ln -sf "$PWD/.inputrc" "$HOME/.inputrc"
|
|
ln -sf "$PWD/.profile" "$HOME/.profile"
|
|
ln -sf "$PWD/.profile" "$HOME/.bash_profile"
|
|
ln -sf "$PWD/scripts" "$HOME/Scripts"
|
|
|
|
for i in vim lynx gh git tmux docker podman iam; do
|
|
cd $i && ./setup
|
|
cd -
|
|
done
|