另外,检查本机 pushd and popd的工作原理,他们将保存当前文件夹,这是方便来回。在这种情况下,你也可以在 gdir myproject之后使用 popd,然后再次返回
# Save the current folder using sdir yourhandle to a variable you can later access the same folder fast using gdir yourhandle
function sdir {
[[ ! -z "$1" ]] && export __d__$1="`pwd`";
}
function gdir {
[[ ! -z "$1" ]] && cd "${!1}";
}
另一个方便的技巧是组合两个 pushd/popd 和 sdir 以及 gdir,当您在 pushd 中替换 goto dir 函数中的 cd 时。这使您还可以在跳转到保存的文件夹时返回到先前的文件夹。
# Save the current folder using sdir yourhandle to a variable you can later access the same folder fast using gdir yourhandle
function sdir {
[[ ! -z "$1" ]] && export __d__$1="`pwd`";
}
function gdir {
[[ ! -z "$1" ]] && pushd "${!1}";
}