Bash 현재 디렉토리명 얻기

1 개요[ | ]

Bash 현재 디렉토리명 얻기
dirname=${PWD##*/}

2 실행예시[ | ]

user01@localhost:~$ pwd
/home/user01
user01@localhost:~$ cat test.sh
#!/bin/bash
dirname=${PWD##*/}
echo $dirname
user01@localhost:~$ ./test.sh
user01

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}