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.
我正在使用 osx 终端学习命令行。我试图删除一个空目录,但它说目录不是空的。这就是我所做的:
$pwd /desktop/temp/stuff/things/frank/joe/alex $ls $(shows nothing) $cd .. $pwd /desktop/temp/stuff/things/frank/joe $rmdir alex rmdir: alex: Directory not empty
你能帮我解决这个问题吗?谢谢你
尝试ls -a而不是ls显示目录中的所有文件。该目录中可能有不可见的文件(以 开头.)。
ls -a
ls
.