12 lines
469 B
Bash
Executable file
12 lines
469 B
Bash
Executable file
#!/bin/bash
|
|
echo ">>> Copying Gitconfig - Please Wait! <<<"
|
|
sudo cp ${HOME}/.config/dotfiles/copy/gitconfig /etc/gitconfig
|
|
|
|
echo ">>> Copying Gitignore - Please Wait! <<<"
|
|
sudo cp ${HOME}/.config/dotfiles/copy/gitignore /etc/gitignore
|
|
|
|
echo ">>> Copying SSH Config - Please Wait! <<<"
|
|
sudo cp ${HOME}/.config/dotfiles/copy/sshconfig /etc/ssh/ssh_config
|
|
|
|
echo ">>> Copying ZSH Environment File - Please Wait! <<<"
|
|
cp ${HOME}/.config/dotfiles/copy/zshenv ${HOME}/.zshenv
|