linux amdgpu turn off screen code example
Example 1: kill all screens linux
for scr in $(screen -ls | awk '{print $1}'); do screen -S $scr -X kill; done
Example 2: kill all screens linux
screen -wipe
for scr in $(screen -ls | awk '{print $1}'); do screen -S $scr -X kill; done
screen -wipe