2016-02-22 20:43:09 -05:00
|
|
|
# basename
|
|
|
|
|
2020-10-06 20:19:56 +02:00
|
|
|
> Remove leading directory portions from a path.
|
2021-04-01 17:54:26 +02:00
|
|
|
> More information: <https://www.gnu.org/software/coreutils/basename>.
|
2016-02-22 20:43:09 -05:00
|
|
|
|
|
|
|
- Show only the file name from a path:
|
|
|
|
|
|
|
|
`basename {{path/to/file}}`
|
|
|
|
|
2020-10-06 20:19:56 +02:00
|
|
|
- Show only the rightmost directory name from a path:
|
|
|
|
|
2024-11-05 02:30:36 +09:00
|
|
|
`basename {{path/to/directory}}`
|
2020-10-06 20:19:56 +02:00
|
|
|
|
2016-02-22 20:43:09 -05:00
|
|
|
- Show only the file name from a path, with a suffix removed:
|
|
|
|
|
2016-02-22 20:47:02 -05:00
|
|
|
`basename {{path/to/file}} {{suffix}}`
|