Bash Shell: 关闭所有 windows 和程序 UNIX

Bash Shell: close all windows and programs UNIX

我如何制作一个脚本来退出所有程序并 windows 在 unix 机器上使用 bash shell 命令和自动化程序?

无需使用额外的程序,例如

xdotool search "" windowkill %@

试试这个:

#!/bin/bash

command=$(ps aux | awk '{print ,}' | grep $USER)

for i in $command; do
    kill -9 ${i};

done