获取隐藏文件的统计信息(ls 或 cp)

Getting stat (ls or cp) of hidden files

我有一个文件夹,其中有一个 .tmux.conf 文件受源代码管理,我想将该文件复制到 ~。这是其中的 ls

ubuntu@ip-172-180:~$ ls -alh .vim/others
total 12K
drwxrwxr-x 2 ubuntu ubuntu 4.0K May  2 19:05 .
drwxrwxr-x 6 ubuntu ubuntu 4.0K May  2 19:05 ..
-rw-rw-r-- 1 ubuntu ubuntu  706 May  2 19:05 .tmux.conf

但是,当我在该目录上执行 ls 时,我什么也没得到:

ubuntu@ip-172-30-1-180:~$ ls .vim/others/*
ls: cannot access '.vim/others/*': No such file or directory

cp:

ubuntu@ip-172-30-1-180:~$ cp .vim/others/* .
cp: cannot stat '.vim/others/*': No such file or directory

复制点文件时是否需要添加一些额外的参数?

检查这个命令

ls -ld .[!.]*

ls -ld .vim/others/[!.]*