使用 Bash 保存变量的工作目录?

我要做的是找到当前的工作目录并保存到一个变量中,这样我就可以运行 ABc0了。我不完全确定他们是否有一个默认包含 cwd 的变量。

如何使用 Bash 将工作目录保存为变量?

238914 次浏览

这样可以保存当前工作目录到变量 cwd的绝对路径:

cwd=$(pwd)

在你的情况下,你可以这样做:

export PATH=$PATH:$(pwd)+somethingelse

对于 亲戚的答案,使用 .

测试:

$ myDir=.
$ ls $myDir
$ cd /
$ ls $myDir

第一个 ls会显示工作目录中的所有内容,第二个会显示 root 目录(/)中的所有内容。

你的作业有一个额外的 $:

export PATH=$PATH:${PWD}:/foo/bar

还有一种变体:

export PATH=$PATH:\`pwd`:/foo/bar

在我的.bash _ profile 中有以下内容:

function mark {
export $1=`pwd`;
}

所以任何时候我想记住一个目录,我只需要输入,例如 标记那里

然后当我想回到那个位置时,我只需要输入 那里有 CD

您可以使用 shell 内建变量 PWD,如下所示:

export PATH=$PATH:$PWD+somethingelse

当前工作目录变量 ie full path/home/dev/other

dir=$PWD

打印完整路径

echo $dir

类似于 mark的解法,只是对变量进行了一些检查。另外,我不喜欢使用 $variable,而是相同的字符串,我保存下来

使用保存目录 sdir myproject保存文件夹/目录,并使用 goto 目录 gdir myproject返回到该文件夹

另外,检查本机 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}";
}

在 BASH shell 中,你可以运行 非常简单:

export PATH=$PATH:`pwd`/somethingelse

没有必要把当前的工作目录保存成一个变量... ..。