当前位置: 首页>>技术教程>>正文


“sudo cd …” one-liner?

,

问题描述

有时我想 cd 进入我的用户没有权限的目录,所以我求助于 sudo

明显的命令 sudo cd somedir 不起作用:

$ sudo mkdir test
$ sudo chmod go-rxw test
$ ls -l
drwx------ 2 root     root  [...snip...] test
$ cd test
-bash: cd: test: Permission denied
$ sudo cd test
sudo: cd: command not found

使用 sudo su 作品:

$ sudo su
# cd test

有没有可能把它变成one-liner? (没什么大不了的,只是好奇:)

我尝试的变化不起作用:

$ sudo "cd test"
sudo: cd: command not found
$ sudo -i cd test
-bash: line 0: cd: test: No such file or directory
$ sudo -s cd test

最后一个没有给出错误,但它 cd 在一个新的 shell 中,在行尾退出,所以它实际上并没有带我去任何地方。

有人能告诉我为什么会这样吗?为什么找不到 sudo cd,例如 sudo ls ... 工作正常?

最佳方案

从理论上讲,问题在于如果您没有目录的执行权限,您应该无法读取目录的内容。现在假设你可以做你想做的事:

user@desktop:/$ sudo cd restricted-dir
user@desktop:/restricted-dir$ ls
file1 file2

如您所见,您使用 sudo 权限进入了该目录,然后,当 sudo 返回时,您再次成为用户,并且您处于通常不应该出现的目录中。

从技术上讲,问题如下。

sudo cd restricted-dir

cd 是 shell 内置,而不是命令。

sudo cd -i restricted-dir

您可能在 /root 中,但它会遇到与下一个相同的问题。

sudo cd -s restricted-dir

您打开一个新的 root shell,cd 进入目录,然后退出 root shell,并返回到您开始的地方。

总而言之,唯一的解决方案是打开一个根 shell 并在您位于该目录时保持打开状态。

次佳方案

sudo sh -c "cd restricted-dir; some-other-command"

IE。

sudo sh -c "cd /root/restricted-dir; ls -l"

关键是“sh -c”,我经常使用它在同一个 shell 上下文/进程中运行一系列命令。

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/12585.html,未经允许,请勿转载。