mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2025-04-29 09:15:34 +00:00
9 lines
149 B
Bash
Executable File
9 lines
149 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if [[ $* == *-b* ]]; then
|
|
cp /etc/hosts ~/.config/.dotfiles/hosts
|
|
else
|
|
sudo cp ~/.config/.dotfiles/hosts /etc/hosts
|
|
fi
|
|
|