mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 02:55:49 +03:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/LexicalPath.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
if (pledge("stdio cpath", nullptr) < 0) {
|
|
perror("pledge");
|
|
return 1;
|
|
}
|
|
|
|
bool symbolic = false;
|
|
const char* target = nullptr;
|
|
const char* path = nullptr;
|
|
|
|
Core::ArgsParser args_parser;
|
|
args_parser.add_option(symbolic, "Create a symlink", "symbolic", 's');
|
|
args_parser.add_positional_argument(target, "Link target", "target");
|
|
args_parser.add_positional_argument(path, "Link path", "path", Core::ArgsParser::Required::No);
|
|
args_parser.parse(argc, argv);
|
|
|
|
String path_buffer;
|
|
if (!path) {
|
|
path_buffer = LexicalPath(target).basename();
|
|
path = path_buffer.characters();
|
|
}
|
|
|
|
if (symbolic) {
|
|
int rc = symlink(target, path);
|
|
if (rc < 0) {
|
|
perror("symlink");
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int rc = link(target, path);
|
|
if (rc < 0) {
|
|
perror("link");
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|