mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
13 lines
259 B
C++
13 lines
259 B
C++
#include <AK/FileSystemPath.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
if (argc != 2) {
|
|
printf("usage: basename <path>\n");
|
|
return 1;
|
|
}
|
|
printf("%s\n", FileSystemPath(argv[1]).basename().characters());
|
|
return 0;
|
|
}
|