10 lines
145 B
Bash
Executable file
10 lines
145 B
Bash
Executable file
#!/bin/bash
|
|
|
|
dotupdate () {
|
|
pushd ~/.config/dotfiles &>/dev/null
|
|
echo "Updating Dotfiles"
|
|
git pull
|
|
popd &>/dev/null
|
|
}
|
|
|
|
dotupdate
|