/bin/bash 에서 pwd 확인하기
이 글을 참고했다.
도커 컨테이너를 /bin/bash
로 접속했을 때, pwd를 확인하고 싶은데 command not found
라고 뜬다.
$ docker exec -it oracle /bin/bash
bash-4.4$ pwd
# bash: pwd: command not found # 커맨드 실행 안됨
이를 해결해보자.
bash-4.4$ echo $PS1
bash-4.4$ pwd
# /opt/oracle/product/21c/dbhomeXE/demo/schema # 이제 경로가 출력된다!
💛 개인 공부 기록용 블로그입니다. 👻