mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
15 lines
347 B
Plaintext
15 lines
347 B
Plaintext
|
#!/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
|