Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在某个文件夹中是否有拒绝访问某些命令和可执行文件的权限?
具体来说,我试图在某些文件夹中拒绝 pwd 的访问,以便通过符号链接访问文件夹的用户无法看到他们在文件层次结构中的位置(为了防止一些安全问题),但能够使用保留在其他地方使用。
您可以将 pwd 移动到另一个目录并制作一个名为 pwd 的脚本,如下所示: 假设真实 pwd 的新位置是 /path/to/movedpwd:
#!/bin/sh if test /path/to/movedpwd = UNWANTED_DIR then echo "Forbidden dir!" else pwd fi 然后让它只可执行,这样用户就找不到真正的密码。
#!/bin/sh if test /path/to/movedpwd = UNWANTED_DIR then echo "Forbidden dir!" else pwd fi