diff options
| -rwxr-xr-x | qcd | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -22,6 +22,10 @@ Usage: __EOF__ } +function setup () { + mkdir -p $QCD_CONFIG_DIR +} + function absolute_path () { (cd "$(dirname '$1')" &>/dev/null && printf "%s/%s" "$PWD" "${1##*/}") } @@ -32,6 +36,8 @@ function qcd () { return fi + # setup + local command=$1 case $command in |
