避免 UNIX 和 Linux 中的常见错误(3)

ls: 0653-341 The file . does not exist.

您正在 ~cormany/scripts 目录中工作。突然,这个目录中的脚本都找不到了,您收到一条奇怪的消息,它说当前工作目录不再存在:

# ls -l total 40 -rwxr-xr-x 1 cormany atc 42 Sep 06 16:20 amdc -rw-rw-rw- 1 cormany atc 154 Jan 27 23:23 atc -rwxr-xr-x 1 cormany atc 206 Aug 04 20:57 atc.2 -rwxr-xr-x 1 cormany atc 48 Jun 12 08:21 bar -rwxr-xr-x 1 cormany atc 87 Feb 22 16:11 pac # ./bar This is another test # pwd /home/cormany/scripts # ./bar ksh: ./bar: not found. # ls -l ls: 0653-341 The file . does not exist.  

当出现这种情况时,就说明通过 rm 命令删除了您原来的工作目录。仅仅创建一个同名的新目录不会解决这个问题,因为文件描述符不一样。

出现这种事故常常是因为您自己在另一个窗口中执行了 rm 命令(至少我是这样)。为了避免这种事故,可以通过 mv 命令修改目录名。如果修改目录名,原来目录中的用户可以继续工作,只是采用不同的目录名,因为文件描述符仍然是相同的:

# ls -l total 40 -rwxr-xr-x 1 cormany atc 42 Sep 06 16:20 amdc -rw-rw-rw- 1 cormany atc 154 Jan 27 23:23 atc -rwxr-xr-x 1 cormany atc 206 Aug 04 20:57 atc.2 -rwxr-xr-x 1 cormany atc 48 Jun 12 08:21 bar -rwxr-xr-x 1 cormany atc 87 Feb 22 16:11 pac # ./bar This is another test # pwd /home/cormany/scripts  

同样,假设有人在另一个会话中把您正在工作的目录改为 ~cormany/scripts.20090601。由于只是转移目录和修改目录名,您仍然可以继续工作:

# ./bar This is another test # pwd /home/cormany/scripts.20090601  

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/24807.html