mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
11 lines
158 B
Bash
Executable File
11 lines
158 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Open dotfiles.
|
|
|
|
set -e
|
|
|
|
test -d "${DOTFILES}" || \
|
|
(echo "Dotfiles path not a directory or doesn't exist" && exit 1)
|
|
|
|
cd "${DOTFILES}" && vi .
|