我可以找到 shell 正在运行什么应用程序吗?

我可以找到 shell 正在运行什么应用程序吗?

我正在编写一个生成新选项卡的 shell 脚本,我注意到它与是否有办法找到 shell 正在运行的应用程序以格式化特定终端的命令gnome-terminal相比略有不同:terminator

if [[ $term == "terminator" ]] ; then
        terminator --new-tab -p PROD -x "(command sequence)"
elif  [[ $term == "gnome-terminal" ]] 
    gnome-terminal --tab-with-profile=PROD -- (command sequence)
else
    # else what?
    echo "Unknown terminal"
fi

我如何找到$term

相关内容