1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:07:35 +00:00

Userland: Use Core::ArgsParser for 'realpath'

This commit is contained in:
Linus Groh 2020-08-05 20:36:42 +02:00 committed by Andreas Kling
parent 7b82334e2f
commit 646f6165e2

View file

@ -24,10 +24,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/ArgsParser.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int main(int argc, char** argv)
@ -37,14 +36,15 @@ int main(int argc, char** argv)
return 1;
}
if (argc != 2) {
printf("usage: realpath <path>\n");
return 1;
}
const char* path;
char* value = realpath(argv[1], nullptr);
Core::ArgsParser args_parser;
args_parser.add_positional_argument(path, "Path to resolve", "path");
args_parser.parse(argc, argv);
char* value = realpath(path, nullptr);
if (value == nullptr) {
printf("realpath() error: %s\n", strerror(errno));
perror("realpath");
return 1;
}
printf("%s\n", value);