Notice
Recent Posts
Recent Comments
- Today
- Total
내 머릿속 데이터베이스
심볼릭 링크 (Symbolic Link)의 실제 경로 (Real Path) 확인하기 본문
출처 : http://devday.tistory.com/2513
리눅스에서 심볼릭 링크의 실제 경로를 확인하려면 다음과 같이 할 수 있다.
pwd -P
다음은 테스트이다.
$ pwd
/usr/lib/python2.7/site-packages
$ pwd -P
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages
$
실제 경로가 출력됨을 확인할 수 있다.
Reference:
http://stackoverflow.com/questions/7665/how-to-resolve-symbolic-links-in-a-shell-script
Comments