"리눅스 ls"의 두 판 사이의 차이

 
(다른 사용자 한 명의 중간 판 하나는 보이지 않습니다)
12번째 줄: 12번째 줄:
사실은... 같은 이름으로 색상옵션이 붙은 alias가 적용되어 있다.
사실은... 같은 이름으로 색상옵션이 붙은 alias가 적용되어 있다.
* CentOS
* CentOS
<source lang='console'>
<syntaxhighlight lang='console'>
[root@zetawiki ~]# which ls
[root@zetawiki ~]# which ls
alias ls='ls --color=auto'
alias ls='ls --color=auto'
/bin/ls
/bin/ls
</source>
</syntaxhighlight>
* 우분투
* 우분투
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# which ls
root@zetawiki:~# which ls
/bin/ls
/bin/ls
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# type ls
root@zetawiki:~# type ls
ls is aliased to `ls --color=auto'
ls is aliased to `ls --color=auto'
</source>
</syntaxhighlight>


==실행 예시==
==실행 예시==
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# ls
root@zetawiki:~# ls
root@zetawiki:~# ls -a
root@zetawiki:~# ls -a
.  ..  .aptitude  .bash_history  .bashrc  .cache  .lesshst  .profile  .ssh  .viminfo
.  ..  .aptitude  .bash_history  .bashrc  .cache  .lesshst  .profile  .ssh  .viminfo
</source>
</syntaxhighlight>
:→ ls로는 아무것도 출력되지 않음 ( 즉, [[홈폴더]]에 폴더와 숨김파일 밖에 없음 )
:→ ls로는 아무것도 출력되지 않음 ( 즉, [[홈폴더]]에 폴더와 숨김파일 밖에 없음 )


55번째 줄: 55번째 줄:
*http://en.wikipedia.org/wiki/Ls
*http://en.wikipedia.org/wiki/Ls


 
[[분류: ls]]
[[분류: 리눅스]]
[[분류: 리눅스]]
[[분류: /bin]]
[[분류: /bin]]
[[분류: /usr/bin]]
[[분류: /usr/bin]]
[[분류: coreutils]]
[[분류: coreutils]]

2022년 11월 10일 (목) 10:55 기준 최신판

  다른 뜻에 대해서는 R ls() 문서를 참조하십시오.

1 개요[ | ]

ls, dir[1]
/bin/ls[2]
/usr/bin/ls[3]
/usr/bin/dir
리스트
  • 디렉토리 내용 목록보기(list directory contents)
  • ls와 dir은 서로 심볼릭 링크도 아니고 하드링크도 아니지만 사실상 같다...[4]

2 alias 확인[ | ]

사실은... 같은 이름으로 색상옵션이 붙은 alias가 적용되어 있다.

  • CentOS
[root@zetawiki ~]# which ls
alias ls='ls --color=auto'
	/bin/ls
  • 우분투
root@zetawiki:~# which ls
/bin/ls
root@zetawiki:~# type ls
ls is aliased to `ls --color=auto'

3 실행 예시[ | ]

root@zetawiki:~# ls
root@zetawiki:~# ls -a
.  ..  .aptitude  .bash_history  .bashrc  .cache  .lesshst  .profile  .ssh  .viminfo
→ ls로는 아무것도 출력되지 않음 ( 즉, 홈폴더에 폴더와 숨김파일 밖에 없음 )

4 같이 보기[ | ]

5 참고[ | ]

  1. ls←list, dir←directory
  2. CentOS 5
  3. CentOS 7
  4. 파일크기는 같은데 cmp로 비교하면 다르다...;;;
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}