Các câu trả lời được chấp nhận hoạt động tốt trong điển hình trường hợp , nhưng thất bại trong cạnh trường hợp , cụ thể là:
- Đối với tên tệp không có phần mở rộng (được gọi là hậu tố trong phần còn lại của câu trả lời này),
extension=${filename##*.}
trả về tên tệp đầu vào thay vì một chuỗi trống.
extension=${filename##*.}
không bao gồm ban đầu .
, trái với quy ước.
- Chuẩn bị mù quáng
.
sẽ không hoạt động cho tên tệp mà không có hậu tố.
filename="${filename%.*}"
sẽ là chuỗi rỗng, nếu tên tệp đầu vào bắt đầu bằng .
và không chứa thêm .
ký tự nào (ví dụ .bash_profile
:) trái với quy ước.
---------
Do đó, sự phức tạp của một giải pháp mạnh mẽ bao gồm tất cả các trường hợp cạnh yêu cầu một hàm - xem định nghĩa của nó bên dưới; nó có thể trả về tất cả các thành phần của một đường dẫn .
Cuộc gọi ví dụ:
splitPath '/etc/bash.bashrc' dir fname fnameroot suffix
# -> $dir == '/etc'
# -> $fname == 'bash.bashrc'
# -> $fnameroot == 'bash'
# -> $suffix == '.bashrc'
Lưu ý rằng các đối số sau đường dẫn đầu vào được tự do chọn, tên biến vị trí .
Để bỏ qua các biến không quan tâm đến trước các biến đó, chỉ định _
(sử dụng biến ném đi $_
) hoặc ''
; ví dụ, để trích xuất tên tập tin gốc và phần mở rộng, sử dụng 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
Mã kiểm tra thực hiện chức năng:
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
Đầu ra dự kiến - lưu ý các trường hợp cạnh:
- một tên tệp không có hậu tố
- một tên tệp bắt đầu bằng
.
( không được coi là bắt đầu của hậu tố)
- một đường dẫn đầu vào kết thúc bằng
/
(trailing /
bị bỏ qua)
- một đường dẫn đầu vào chỉ là một tên tệp (
.
được trả về làm đường dẫn cha)
- một tên tệp có nhiều hơn
.
mã thông báo -prefixed (chỉ cuối cùng được coi là hậu tố):
----- /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