1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# Written by Aleksey Cheusov <vle@gmx.net>, public domain
#
# This awk module is a part of RunAWK distribution,
# http://sourceforge.net/projects/runawk
#
############################################################
#use "has_suffix.awk"
# =head2 basename.awk
#
# =over 2
#
# =item I<basename (PATH)>
#
# return filename portion of the PATH
# (the same as I<dirname(3)>)
#
# =back
#
# See example/demo_basename for the sample of usage
#
function basename (pathname, suffix){
sub(/\/$/, "", pathname)
if (pathname == "")
return "/"
sub(/^.*\//, "", pathname)
if (suffix != "" && has_suffix(pathname, suffix))
pathname = substr(pathname, 1, length(pathname) - length(suffix))
return pathname
}
|