basename 명령어
주어진 경로에서 파일명만 추출한다
bash command
Examples
# 실행 결과는 johngrib.github.io
basename /Users/johngrib/johngrib.github.io
# 실행 결과는 test
basename -s .js /Users/johngrib/johngrib.github.io/test.js
주어진 경로에서 파일명만 추출한다
# 실행 결과는 johngrib.github.io
basename /Users/johngrib/johngrib.github.io
# 실행 결과는 test
basename -s .js /Users/johngrib/johngrib.github.io/test.js