1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/basename.md

17 lines
426 B
Markdown
Raw Normal View History

2016-02-22 20:43:09 -05:00
# basename
> Remove leading directory portions from a path.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/basename-invocation.html>.
2016-02-22 20:43:09 -05:00
- Show only the file name from a path:
`basename {{path/to/file}}`
- Show only the rightmost directory name from a path:
2024-11-05 02:30:36 +09:00
`basename {{path/to/directory}}`
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}}`