mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:47:44 +00:00
Userland: Add 'which' command (#497)
This mimics the shell's path resolution to locate the executable that would execute if typing it as a command.
This commit is contained in:
parent
50ef2216fa
commit
23e8715022
1 changed files with 29 additions and 0 deletions
29
Userland/which.cpp
Normal file
29
Userland/which.cpp
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
#include <AK/AKString.h>
|
||||||
|
#include <AK/Vector.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
int main(int argc, char** argv)
|
||||||
|
{
|
||||||
|
if (argc < 2) {
|
||||||
|
printf("usage: which <executable>\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
char* filename = argv[1];
|
||||||
|
|
||||||
|
String path = getenv("PATH");
|
||||||
|
if (path.is_empty())
|
||||||
|
path = "/bin:/usr/bin";
|
||||||
|
|
||||||
|
auto parts = path.split(':');
|
||||||
|
for (auto& part : parts) {
|
||||||
|
auto candidate = String::format("%s/%s", part.characters(), filename);
|
||||||
|
if(access(candidate.characters(), X_OK) == 0) {
|
||||||
|
printf("%s\n", candidate.characters());
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue