स्वीकार किए जाते हैं जवाब में अच्छी तरह से काम करता है ठेठ मामलों , लेकिन में विफल रहता है धार मामलों , अर्थात्:
- बिना विस्तार के फ़ाइल नाम के लिए ( इस उत्तर के शेष भाग में प्रत्यय ),
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
अपेक्षित आउटपुट - किनारे के मामलों पर ध्यान दें:
- एक फ़ाइल नाम जिसमें कोई प्रत्यय नहीं है
- एक फ़ाइल नाम जिसकी शुरुआत
.
( प्रत्यय की शुरुआत नहीं मानी जाती)
- में समाप्त होने वाला एक इनपुट पथ
/
(अनुगामी /
उपेक्षा है)
- इनपुट पथ जो केवल फ़ाइल नाम है (
.
मूल पथ के रूप में लौटाया गया है)
- एक फ़ाइल नाम जिसमें अधिक-से-अधिक
.
टोकन (केवल अंतिम को प्रत्यय माना जाता है):
----- /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