2016-02-23 01:43:09 +00:00
|
|
|
# basename
|
|
|
|
|
2020-10-06 19:19:56 +01:00
|
|
|
> Remove leading directory portions from a path.
|
2021-03-26 12:03:39 +00:00
|
|
|
> More information: <https://man7.org/linux/man-pages/man1/basename.1.html>.
|
2016-02-23 01:43:09 +00:00
|
|
|
|
|
|
|
- Show only the file name from a path:
|
|
|
|
|
|
|
|
`basename {{path/to/file}}`
|
|
|
|
|
2020-10-06 19:19:56 +01:00
|
|
|
- Show only the rightmost directory name from a path:
|
|
|
|
|
|
|
|
`basename {{path/to/directory/}}`
|
|
|
|
|
2016-02-23 01:43:09 +00:00
|
|
|
- Show only the file name from a path, with a suffix removed:
|
|
|
|
|
2016-02-23 01:47:02 +00:00
|
|
|
`basename {{path/to/file}} {{suffix}}`
|