mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
29 lines
426 B
Markdown
29 lines
426 B
Markdown
|
|
## Name
|
||
|
|
|
||
|
|
basename - strip directory names from path
|
||
|
|
|
||
|
|
## Synopsis
|
||
|
|
|
||
|
|
```**sh
|
||
|
|
$ basename <path>
|
||
|
|
```
|
||
|
|
|
||
|
|
## 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
|
||
|
|
|
||
|
|
## Examples
|
||
|
|
|
||
|
|
```sh
|
||
|
|
$ basename /
|
||
|
|
/
|
||
|
|
$ basename ~
|
||
|
|
anon
|
||
|
|
$ basename Source/js/array.js
|
||
|
|
array.js
|
||
|
|
```
|