Back to Serenity

Basename

Base/usr/share/man/man1/basename.md

latest476 B
Original Source

Name

basename - strip directory names from path

Synopsis

**sh
$ basename <path> [suffix]

Description

basename prints basename (filename, stripped of preceding directory names) of specified path to standard output. The path does not have to exist.

Arguments

  • path: The path which we want to get basename of
  • suffix: Suffix to strip from name

Examples

sh
$ basename /
/
$ basename ~
anon
$ basename Source/js/array.js
array.js