허용 대답은 잘 작동하는 일반적인 경우 지만, 실패 에지 의 경우 , 즉 :
- 확장자가없는 파일 이름 ( 이 답변의 나머지 부분에서 접미사 라고 함 )의
extension=${filename##*.}
경우 빈 문자열이 아닌 입력 파일 이름을 반환합니다.
extension=${filename##*.}
.
컨벤션과 달리 초기는 포함하지 않습니다 .
- 맹목적으로 접두사
.
는 접미사가없는 파일 이름에는 작동하지 않습니다.
filename="${filename%.*}"
입력 파일 이름으로 시작 하고 규칙에 위배되는 .
추가 .
문자 (예 .bash_profile
:)를 포함하지 않으면 빈 문자열이됩니다 .
---------
따라서 모든 경우를 포괄 하는 강력한 솔루션 의 복잡성으로 인해 함수 가 필요 합니다. 아래의 정의를 참조하십시오. 경로의 모든 구성 요소를 반환 할 수 있습니다 .
호출 예 :
splitPath '/etc/bash.bashrc' dir fname fnameroot suffix
# -> $dir == '/etc'
# -> $fname == 'bash.bashrc'
# -> $fnameroot == 'bash'
# -> $suffix == '.bashrc'
입력 경로 뒤의 인수는 위치 변수 이름으로 자유롭게 선택 됩니다 .
관심 변수가 아닌 변수 앞에 나오지 않으려면 (쓰레기 변수 _
사용 $_
) 또는 ''
; 예를 들어 파일 이름 루트와 확장자 만 추출하려면을 사용하십시오 splitPath '/etc/bash.bashrc' _ _ fnameroot extension
.
# SYNOPSIS
# splitPath path varDirname [varBasename [varBasenameRoot [varSuffix]]]
# DESCRIPTION
# Splits the specified input path into its components and returns them by assigning
# them to variables with the specified *names*.
# Specify '' or throw-away variable _ to skip earlier variables, if necessary.
# The filename suffix, if any, always starts with '.' - only the *last*
# '.'-prefixed token is reported as the suffix.
# As with `dirname`, varDirname will report '.' (current dir) for input paths
# that are mere filenames, and '/' for the root dir.
# As with `dirname` and `basename`, a trailing '/' in the input path is ignored.
# A '.' as the very first char. of a filename is NOT considered the beginning
# of a filename suffix.
# EXAMPLE
# splitPath '/home/jdoe/readme.txt' parentpath fname fnameroot suffix
# echo "$parentpath" # -> '/home/jdoe'
# echo "$fname" # -> 'readme.txt'
# echo "$fnameroot" # -> 'readme'
# echo "$suffix" # -> '.txt'
# ---
# splitPath '/home/jdoe/readme.txt' _ _ fnameroot
# echo "$fnameroot" # -> 'readme'
splitPath() {
local _sp_dirname= _sp_basename= _sp_basename_root= _sp_suffix=
# simple argument validation
(( $# >= 2 )) || { echo "$FUNCNAME: ERROR: Specify an input path and at least 1 output variable name." >&2; exit 2; }
# extract dirname (parent path) and basename (filename)
_sp_dirname=$(dirname "$1")
_sp_basename=$(basename "$1")
# determine suffix, if any
_sp_suffix=$([[ $_sp_basename = *.* ]] && printf %s ".${_sp_basename##*.}" || printf '')
# determine basename root (filemane w/o suffix)
if [[ "$_sp_basename" == "$_sp_suffix" ]]; then # does filename start with '.'?
_sp_basename_root=$_sp_basename
_sp_suffix=''
else # strip suffix from filename
_sp_basename_root=${_sp_basename%$_sp_suffix}
fi
# assign to output vars.
[[ -n $2 ]] && printf -v "$2" "$_sp_dirname"
[[ -n $3 ]] && printf -v "$3" "$_sp_basename"
[[ -n $4 ]] && printf -v "$4" "$_sp_basename_root"
[[ -n $5 ]] && printf -v "$5" "$_sp_suffix"
return 0
}
test_paths=(
'/etc/bash.bashrc'
'/usr/bin/grep'
'/Users/jdoe/.bash_profile'
'/Library/Application Support/'
'readme.new.txt'
)
for p in "${test_paths[@]}"; do
echo ----- "$p"
parentpath= fname= fnameroot= suffix=
splitPath "$p" parentpath fname fnameroot suffix
for n in parentpath fname fnameroot suffix; do
echo "$n=${!n}"
done
done
기능을 수행하는 테스트 코드 :
test_paths=(
'/etc/bash.bashrc'
'/usr/bin/grep'
'/Users/jdoe/.bash_profile'
'/Library/Application Support/'
'readme.new.txt'
)
for p in "${test_paths[@]}"; do
echo ----- "$p"
parentpath= fname= fnameroot= suffix=
splitPath "$p" parentpath fname fnameroot suffix
for n in parentpath fname fnameroot suffix; do
echo "$n=${!n}"
done
done
예상되는 출력-다음과 같은 경우에주의하십시오.
- 접미사가없는 파일 이름
- 로 시작하는 파일 이름
.
( 접미사 시작으로 간주 되지 않음 )
- 끝나는 입력 경로
/
(트레일 링 /
은 무시 됨)
- 파일 이름 인 입력 경로 (
.
부모 경로로 반환)
.
-prefixed 토큰 보다 많은 파일 이름 (마지막 만 접미사로 간주 됨) :
----- /etc/bash.bashrc
parentpath=/etc
fname=bash.bashrc
fnameroot=bash
suffix=.bashrc
----- /usr/bin/grep
parentpath=/usr/bin
fname=grep
fnameroot=grep
suffix=
----- /Users/jdoe/.bash_profile
parentpath=/Users/jdoe
fname=.bash_profile
fnameroot=.bash_profile
suffix=
----- /Library/Application Support/
parentpath=/Library
fname=Application Support
fnameroot=Application Support
suffix=
----- readme.new.txt
parentpath=.
fname=readme.new.txt
fnameroot=readme.new
suffix=.txt