4
rated 0 times
[
4]
[
0]
/ answers: 1 / hits: 1816
/ 2 Years ago, tue, september 28, 2021, 8:48:09
I have lots of pdf opened(40-50). I want to close all pdfs at the same time, not one by one.
More From » pdf
I have lots of pdf opened(40-50). I want to close all pdfs at the same time, not one by one.
You could send a regular kill signal to all instances of the PDF reader application.
First, identify your application name. For GNOME default PDF reader is evince
, for KDE this is okular
. Now, kill all of those processes you own using pkill
, like this:
pkill -u gert evince
To kill all evince
processes owned by me (gert
).