mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 10:54:57 +00:00
473 B
473 B
Name
basename - strip directory names from path
Synopsis
$ 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 ofsuffix
: Suffix to strip from name
Examples
$ basename /
/
$ basename ~
anon
$ basename Source/js/array.js
array.js