2018-08-23 18:13:05 +01:00
|
|
|
# dirname
|
|
|
|
|
|
|
|
> Calculates the parent directory of a given file or directory path.
|
2021-04-01 16:54:26 +01:00
|
|
|
> More information: <https://www.gnu.org/software/coreutils/dirname>.
|
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 03:55:19 +00: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 03:55:19 +00:00
|
|
|
`dirname --zero {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
|