Software:Dirname
| Developer(s) | Various open-source and commercial developers |
|---|---|
| Written in | C |
| Operating system | Unix, Unix-like, IBM i |
| Platform | Cross-platform |
| Type | Command |
| License | coreutils: GPLv3+ |
dirname is a shell command for extracting the directory path portion of a path, without the last name. The command is specified in the Single UNIX Specification and is primarily used in shell scripts.
The version in GNU Core Utilities was written by David MacKenzie and Jim Meyering.[1] The command is available for Windows as part of the GnuWin32 project[2] and UnxUtils[3] and is in IBM i.[4]
Usage
The Single UNIX Specification is: dirname path. The required argument, path, is a file path string.
Examples
The command reports the directory path portion of a path ignoring any trailing slashes.
$ dirname /path/to/filename.ext
/path/to
$ dirname /path/to/
/path
$ dirname filename.ext
.
Performance
Since the command accepts only one operand, its usage within the inner loop of a shell script can be detrimental to performance. Consider:
while read file; do
dirname "$file"
done < some-input
The above causes a separate process invocation for each line of input. For this reason, shell substitution is typically used instead:
echo "${file%/*}";
Or, if relative pathnames need to be handled as well:
if [ -n "${file##*/*}" ]; then
echo "."
else
echo "${file%/*}";
fi
Note that these handle trailing slashes differently than dirname.
See also
References
- ↑ – Linux User's Manual – User Commands
- ↑ "CoreUtils for Windows". https://gnuwin32.sourceforge.net/packages/coreutils.htm.
- ↑ "Native Win32 ports of some GNU utilities". http://unxutils.sourceforge.net/.
- ↑ IBM. "IBM System i Version 7.2 Programming Qshell" (in en). https://www.ibm.com/support/knowledgecenter/ssw_ibm_i_74/rzahz/rzahzpdf.pdf?view=kc.
External links
| The Wikibook Guide to Unix has a page on the topic of: Commands |
- : return the directory portion of a pathname – Commands & Utilities Reference, The Single UNIX Specification, Issue 7 from The Open Group
- – Linux User Commands Manual
- – OpenBSD General Commands Manual
Template:Core Utilities commands
