ls -al .functions*
-rw-r--r-- 1 root root 471040 Mar 2 10:01 .functions.php.swo
-rw-r--r-- 1 root root 438272 Mar 2 09:57 .functions.php.swp
*
kann übereinstimmen .php.swo
und .php.swp
warum *
kann nicht übereinstimmen .functions.php
?
ls -al *.swo
ls: cannot access '*.swo': No such file or directory
ls -al *swo
ls: cannot access '*swo': No such file or directory
*
es.
(das aktuelle Verzeichnis) und..
(das übergeordnete Verzeichnis des aktuellen Verzeichnisses) enthält. Versuchen Sie dann, dotglob einzustellenls *
. Sie nicht versuchenrm -R *
.