HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

dirname — Remove trailing filename portion from a path. More information: <https://www.gnu.org/software/coreut

Submitted by: @import:tldr-pages··
0
Viewed 0 times
trailingcommandremovedirnamefromclifilenameportion

Problem

How to use the dirname command: Remove trailing filename portion from a path. More information: <https://www.gnu.org/software/coreutils/manual/html_node/dirname-invocation.html>.

Solution

dirname — Remove trailing filename portion from a path. More information: <https://www.gnu.org/software/coreutils/manual/html_node/dirname-invocation.html>.

Calculate the parent directory of a given path:
dirname {{path/to/file_or_directory}}


Calculate the parent directory of multiple paths:
dirname {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}


Delimit output with a NUL character instead of a newline (useful when combining with xargs):
dirname {{[-z|--zero]}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}

Code Snippets

Calculate the parent directory of a given path

dirname {{path/to/file_or_directory}}

Calculate the parent directory of multiple paths

dirname {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}

Delimit output with a NUL character instead of a newline (useful when combining with `xargs`)

dirname {{[-z|--zero]}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}

Context

tldr-pages: common/dirname

Revisions (0)

No revisions yet.