이름이 "."인 폴더를 보는 방법은 무엇입니까?

이름이 "."인 폴더를 보는 방법은 무엇입니까?

"."라는 이름의 폴더는 점만 있고 다른 것은 없습니다. Dolphin 또는 krusader 파일 관리자에는 표시되지 않습니다.

ls -a폴더를 보여줍니다.

터미널 출력:

drwxrwxrwx    - root 29 Feb 17:05 .
drwxrwxrwx    - root 20 Feb 20:32 ..
drwxrwxrwx    - root 20 Feb 17:01 otherFolder1
drwxrwxrwx    - root 20 Feb 20:32 otherFolder2
drwxrwxrwx    - root 20 Feb 17:01 otherFolder3

cd .다른 사람들과 마찬가지로 나를 폴더에 넣지 않습니다. (물고기 터미널 사용)

GUI 파일 탐색기에 이러한 폴더를 표시하려면 어떻게 해야 합니까? 내가 어떻게 cd그들에게 빠져들 수 있나요? rm -rf .작동하지 않는데 어떻게 삭제할 수 있나요 ?

답변1

..UNIX 및 UNIX와 유사한 운영 체제(예: Linux)에서 출력에 로 표시되는 폴더는 ls -a현재 폴더의 상위 폴더를 나타내고, 로 표시되는 폴더는 .현재 폴더 자체를 나타냅니다. 그건,

$pwd
/usr/phred/stuff
$ls -al
drwxrwxrwx    - root 29 Feb 17:05 .
drwxrwxrwx    - root 20 Feb 20:32 ..
drwxrwxrwx    - root 20 Feb 17:01 otherFolder1
drwxrwxrwx    - root 20 Feb 20:32 otherFolder2
drwxrwxrwx    - root 20 Feb 17:01 otherFolder3
$cd ..
$pwd
/usr/phred
$ls -al
drwxrwxrwx    - root 29 Feb 17:05 .
drwxrwxrwx    - root 20 Feb 20:32 ..
drwxrwxrwx    - root 20 Feb 17:01 stuff
$cd stuff
$pwd
/usr/phred/stuff
$ls -al
drwxrwxrwx    - root 29 Feb 17:05 .
drwxrwxrwx    - root 20 Feb 20:32 ..
drwxrwxrwx    - root 20 Feb 17:01 otherFolder1
drwxrwxrwx    - root 20 Feb 20:32 otherFolder2
drwxrwxrwx    - root 20 Feb 17:01 otherFolder3
$ls -al ..
drwxrwxrwx    - root 29 Feb 17:05 .
drwxrwxrwx    - root 20 Feb 20:32 ..
drwxrwxrwx    - root 20 Feb 17:01 stuff
$ls -al .
drwxrwxrwx    - root 29 Feb 17:05 .
drwxrwxrwx    - root 20 Feb 20:32 ..
drwxrwxrwx    - root 20 Feb 17:01 otherFolder1
drwxrwxrwx    - root 20 Feb 20:32 otherFolder2
drwxrwxrwx    - root 20 Feb 17:01 otherFolder3

Linux에서는 그래픽 파일 관리자를 사용하지 않지만 Windows에서는 사용하며, 콘솔 Linux 명령에 해당하는 Windows에서는 및 항목(Linux에서와 동일한 의미를 가짐) ls -al도 표시 하지만 파일 관리자는 일반적으로 해당 파일을 표시하지 않습니다(7-Zip 파일 관리자는 표시하지만 숨길 수는 없는 것으로 보입니다)....

관련 정보