在 Windows 环境中,有一个 API 来获取运行进程的路径。在 Unix/Linux 中有类似的东西吗?
或者在这种环境下还有其他方法可以做到这一点?
在 Linux 上,符号链接 /proc/<pid>/exe有可执行文件的路径。
/proc/<pid>/exe
在 AIX上,这个文件不存在。您可以比较 cksum <actual path to binary>和 cksum /proc/<pid>/object/a.out。
cksum <actual path to binary>
cksum /proc/<pid>/object/a.out
在 Linux 中,每个进程在 /proc中都有自己的文件夹。因此,您可以使用 getpid()获取正在运行的进程的 pid,然后将其与路径 /proc连接,以获取您希望需要的文件夹。
/proc
getpid()
下面是 Python 中的一个简短例子:
import os print os.path.join('/proc', str(os.getpid()))
下面是 ANSI C 中的例子:
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> int main(int argc, char **argv) { pid_t pid = getpid(); fprintf(stdout, "Path to current process: '/proc/%d/'\n", (int)pid); return EXIT_SUCCESS; }
用以下方法编制:
gcc -Wall -Werror -g -ansi -pedantic process_path.c -oprocess_path
没有“保证在任何地方工作”的方法。
步骤1是检查 argv [0] ,如果程序是通过其完整路径启动的,那么它(通常)将拥有完整路径。如果它是由一个相对路径启动的,那么结果也是一样的(尽管这需要使用 getcwd ()获取当前的工作目录。
如果上面的步骤都不成立,那么步骤2就是获取程序的名称,然后从 argv [0]中获取程序的名称,然后从环境中获取用户的 PATH,并通过这个步骤查看是否有合适的具有相同名称的可执行二进制文件。
注意 argv [0]是由执行程序的进程设置的,因此它不是100% 可靠的。
所有的答案都是针对 Linux 的。
如果你也需要 Unix,那么你需要:
char * getExecPath (char * path,size_t dest_len, char * argv0) { char * baseName = NULL; char * systemPath = NULL; char * candidateDir = NULL; /* the easiest case: we are on Linux */ size_t buff_len; if (buff_len = readlink ("/proc/self/exe", path, dest_len - 1) != -1) { path [buff_len] = '\0'; dirname (path); strcat (path, "/"); return path; } /* Ups... not on Linux, no guarantee */ /* check if we have something like execve("foobar", NULL, NULL) */ if (argv0 == NULL) { /* We surrender and give the current path instead */ if (getcwd (path, dest_len) == NULL) return NULL; strcat (path, "/"); return path; } /* argv[0] */ /* if dest_len < PATH_MAX may cause buffer overflow */ if ((realpath (argv0, path)) && (!access (path, F_OK))) { dirname (path); strcat (path, "/"); return path; } /* Current path */ baseName = basename (argv0); if (getcwd (path, dest_len - strlen (baseName) - 1) == NULL) return NULL; strcat (path, "/"); strcat (path, baseName); if (access (path, F_OK) == 0) { dirname (path); strcat (path, "/"); return path; } /* Try the PATH. */ systemPath = getenv ("PATH"); if (systemPath != NULL) { dest_len--; systemPath = strdup (systemPath); for (candidateDir = strtok (systemPath, ":"); candidateDir != NULL; candidateDir = strtok (NULL, ":")) { strncpy (path, candidateDir, dest_len); strncat (path, "/", dest_len); strncat (path, baseName, dest_len); if (access(path, F_OK) == 0) { free (systemPath); dirname (path); strcat (path, "/"); return path; } } free(systemPath); dest_len++; } /* Again, someone has to use execve: we don’t know the executable name; we surrender and instead give the current path */ if (getcwd (path, dest_len - 1) == NULL) return NULL; strcat (path, "/"); return path; }
查找进程名称的路径
#!/bin/bash # @author Lukas Gottschall PID=`ps aux | grep precessname | grep -v grep | awk '{ print $2 }'` PATH=`ls -ald --color=never /proc/$PID/exe | awk '{ print $10 }'` echo $PATH
您还可以通过以下方法(未经彻底测试)获得 GNU/Linux 上的路径:
char file[32]; char buf[64]; pid_t pid = getpid(); sprintf(file, "/proc/%i/cmdline", pid); FILE *f = fopen(file, "r"); fgets(buf, 64, f); fclose(f);
如果你想要可执行文件的目录来更改进程的工作目录目录(用于 media/data/etc) ,你需要删除最后一个/之后的所有内容:
*strrchr(buf, '/') = '\0'; /*chdir(buf);*/
你可以通过这些方法很容易地找到前任,只要你自己试试。
ll /proc/<PID>/exe
pwdx <PID>
lsof -p <PID> | grep cwd
我用:
ps -ef | grep 786
用您的 PID 或进程名替换786。
对于 AIX:
getPathByPid() { if [[ -e /proc/$1/object/a.out ]]; then inode=`ls -i /proc/$1/object/a.out 2>/dev/null | awk '{print $1}'` if [[ $? -eq 0 ]]; then strnode=${inode}"$" strNum=`ls -li /proc/$1/object/ 2>/dev/null | grep $strnode | awk '{print $NF}' | grep "[0-9]\{1,\}\.[0-9]\{1,\}\."` if [[ $? -eq 0 ]]; then # jfs2.10.6.5869 n1=`echo $strNum|awk -F"." '{print $2}'` n2=`echo $strNum|awk -F"." '{print $3}'` # brw-rw---- 1 root system 10, 6 Aug 23 2013 hd9var strexp="^b.*"$n1,"[[:space:]]\{1,\}"$n2"[[:space:]]\{1,\}.*$" # "^b.*10, \{1,\}5 \{1,\}.*$" strdf=`ls -l /dev/ | grep $strexp | awk '{print $NF}'` if [[ $? -eq 0 ]]; then strMpath=`df | grep $strdf | awk '{print $NF}'` if [[ $? -eq 0 ]]; then find $strMpath -inum $inode 2>/dev/null if [[ $? -eq 0 ]]; then return 0 fi fi fi fi fi fi return 1 }
感谢 奇异。
pwdx <process id>
此命令将从执行它的位置获取进程路径。
下面的命令在正在运行的进程列表中搜索进程的名称,并将 pid 重定向到 一个 href = “ https://linux.die.net/man/1/pwdx”rel = “ nofollow noReferrer”> pwdx 命令以查找进程的位置。
ps -ef | grep "abc" |grep -v grep| awk '{print $2}' | xargs pwdx
将“ abc”替换为您的特定模式。
或者,如果您可以在 。 bashrc中将其配置为一个函数,那么如果需要经常使用它,您可能会发现使用起来很方便。
ps1() { ps -ef | grep "$1" |grep -v grep| awk '{print $2}' | xargs pwdx; }
例如:
[admin@myserver:/home2/Avro/AvroGen]$ ps1 nifi 18404: /home2/Avro/NIFI