Dirname - kdirname

Here is the Korn shell version of the Unix dirname command. It returns a pathname minus the last directory. As in kbasename, the substring feature does all the work.

					#!/bin/ksh
					#
					#     kdirname - Korn shell dirname
					#
					# Check arguments
					if (($# == 0 || $# > 1))
					then
					print "Usage: $0 string"
					exit 1
					fi
					# Get the dirname
					print ${1%/*}
				

Get Korn Shell: Unix and Linux Programming Manual, Third Edition, The now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.