2018-08-23 18:13:05 +01:00
|
|
|
# dirname
|
|
|
|
|
2024-02-14 17:25:13 -03:00
|
|
|
> Calculates the parent directory of a file or directory path.
|
2025-01-10 14:45:48 -08:00
|
|
|
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/dirname-invocation.html>.
|
2018-08-23 18:13:05 +01:00
|
|
|
|
|
|
|
- Calculate the parent directory of a given path:
|
|
|
|
|
|
|
|
`dirname {{path/to/file_or_directory}}`
|
|
|
|
|
|
|
|
- Calculate the parent directory of multiple paths:
|
|
|
|
|
2024-01-31 00:55:19 -03:00
|
|
|
`dirname {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
|
2018-08-23 18:13:05 +01:00
|
|
|
|
|
|
|
- Delimit output with a NUL character instead of a newline (useful when combining with `xargs`):
|
|
|
|
|
2024-01-31 00:55:19 -03:00
|
|
|
`dirname --zero {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
|