mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
20 lines
300 B
Plaintext
20 lines
300 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Opens the default quotes file with vim. Prompts to commit.
|
||
|
|
||
|
dir="${KN}/quotes"
|
||
|
file="${dir}/README.md"
|
||
|
mkdir -p "${dir}"
|
||
|
vim +3 "${file}"
|
||
|
|
||
|
read -p 'Do you want to commit? ' commit
|
||
|
|
||
|
if [[ ! $commit =~ ^[Yy] ]]; then
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
cd "${dir}"
|
||
|
git add "${file}"
|
||
|
git commit
|
||
|
git push
|