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
2021-03-26 08:03:39 -04:00

16 lines
400 B
Markdown

# basename
> Remove leading directory portions from a path.
> More information: <https://man7.org/linux/man-pages/man1/basename.1.html>.
- Show only the file name from a path:
`basename {{path/to/file}}`
- Show only the rightmost directory name from a path:
`basename {{path/to/directory/}}`
- Show only the file name from a path, with a suffix removed:
`basename {{path/to/file}} {{suffix}}`