shellnotes/util/ChMkDir.sh
2021-02-03 18:58:47 +02:00

13 lines
No EOL
263 B
Bash

:<<'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