shellnotes/util/ChMkDir.sh

13 lines
263 B
Bash
Raw Normal View History

2021-02-03 17:58:47 +01:00
:<<'info'
shellnotes - ChMkDir.sh
(C) Dimitris Marakomihelakis
Released under the "All rights reserved" category. See the RIGHTS.txt file
in /docs/github/ for its full text.
info
cd ~
if [[ -d "$DEFAULT_PATH" ]]; then
exists=true
else
mkdir Notes >/dev/null
fi