在Unix shell中,我可以使用ps -ocommand= -p $PPID
获取父命令。如何从Windows shell中执行相同的操作?
我需要这个用于Git预提交钩子,它检测是否使用--amend
标志启动了提交。
答案 0 :(得分:0)
这样做的一种粗略方法是使用标题查询查找当前的PID。
title ABC
for /f "tokens=2" %%P in ('tasklist /V ^| findstr "ABC"') do set CurrentPid=%%P
for /f "tokens=2 skip=1" %%P in ('wmic process where ProcessId^=%CurrentPid% get Caption^,ParentProcessId^,ProcessId') do set ParentProcessId=%%P
wmic process where ProcessId=%ParentProcessId% get CommandLine
有很多可以在那里优化。