moving all dots
This commit is contained in:
parent
6fcf9ba919
commit
d9b6fdfc1b
349 changed files with 34598 additions and 34727 deletions
13
dot_setup_new_env.sh
Executable file
13
dot_setup_new_env.sh
Executable file
|
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
function main {
|
||||
mv -f .* $HOME
|
||||
mv -f bin $HOME
|
||||
cd $HOME
|
||||
git submodule update --init --recursive
|
||||
}
|
||||
|
||||
read -p "This will overwrite files in $HOME. Type 'yes' to confirm: " confirm
|
||||
if [ "$confirm" == "yes" ]; then
|
||||
main;
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue