我正在搜索命令以获取在Windows任务管理器中编写的命令行。我正在使用tasklist /fo CSV /v
,但它没有提供我在查看任务管理器时获得的命令行。我附上一张图片来表明我的意思,这是最正确的专栏。
我在r
内的系统调用中需要此信息。
答案 0 :(得分:3)
为了完整性:
#get list of processes' ids and exec paths
res <- system("wmic process get ProcessID,CommandLine", intern=TRUE)
#parse the results to get a nice data.frame
ans <- trimws(res)[!grepl("^[0-9]", trimws(res))]
ans <- ans[ans!=""][-1]
data.frame(
ProcessId=sapply(strsplit(ans, " "), tail, n=1L),
CommandLine=sapply(strsplit(ans, " "), function(x) trimws(paste(head(x, n=-1L), collapse=" ")))
)
head(df)