1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 12:42:07 +02:00
tldr/pages/common/basename.md
2024-12-09 22:54:50 -08:00

426 B

basename

Remove leading directory portions from a path. More information: https://www.gnu.org/software/coreutils/manual/html_node/basename-invocation.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}}