mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-05 21:20:31 +00:00
26 lines
554 B
Fish
26 lines
554 B
Fish
# SYNOPSIS
|
|
# basename <string> [suffix]
|
|
# basename [-s suffix] <string> [string...]
|
|
#
|
|
# OVERVIEW
|
|
# variable arguments basename
|
|
|
|
function basename -d "get the filename or directory part of a path"
|
|
if set -q argv[1]
|
|
set -l ext ""
|
|
switch $argv[1]
|
|
case -s
|
|
if test (count $argv) -gt 2
|
|
set ext $argv[2]
|
|
set argv $argv[3..-1]
|
|
else
|
|
echo "basename: Invalid number of arguments"
|
|
return 1
|
|
end
|
|
end
|
|
for path in $argv
|
|
command basename "$path" "$ext"
|
|
end
|
|
end
|
|
end
|