9 lines
351 B
Bash
Executable file
9 lines
351 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 ZSH Environment File - Please Wait! <<<"
|
|
cp ${HOME}/.config/dotfiles/copy/zshenv ${HOME}/.zshenv
|