How can I quit an app using Terminal?Can home and end keys be mapped when using Terminal?How can I remove Firefox using terminal?Bash Script that will start up second Terminal process?How do I kill a process that won't die?How do I programatically kill the CCLibrary process by PID?How does one start a bash command that doesn't close on Terminal quit?Quit terminal but store the session for next startHow to switch focus to the app based on its PID from CLI?How to set a fixed title for a terminal in Mac?How can I open an app using Terminal?

If every star in the universe except the Sun were destroyed, would we die?

Friend is very nitpicky about side comments I don't intend to be taken too seriously

Is there a "right" way to interpret a novel, if not, how do we make sure our novel is interpreted correctly?

Why did Tony's Arc Reactor do this?

Word for something that used to be popular but not anymore

Is mountain bike good for long distances?

How did vāti-s become vātēs?

Capacitors with same voltage, same capacitance, same temp, different diameter?

How can I return only the number of paired values in array?

How can I finish my PhD?

Why would an AC motor heavily shake when driven with certain frequencies?

How to say "In Japan, I want to ..."?

What happens when a file that is 100% paged in to the page cache gets modified by another process

What makes an ending "happy"?

What's the biggest difference between these two photos?

How there are 3 possible tautomers of 2,2,4-trimethylheptane-3,5-dione?

Why can't some airports handle heavy aircraft while others do it easily (same runway length)?

How invisible hand adjusts stock prices if company is listed on multiple exchanges, under multiple currencies, and one of the currencies plunges?

Short story: Interstellar inspector senses "off" nature of planet hiding aggressive culture

Can multiple public keys lead to the same shared secret in x25519?

How can Schrödinger's cat be both dead and alive?

A PEMDAS issue request for explanation

Is every sentence we write or utter either true or false?

After a few interviews, What should I do after told to wait?



How can I quit an app using Terminal?


Can home and end keys be mapped when using Terminal?How can I remove Firefox using terminal?Bash Script that will start up second Terminal process?How do I kill a process that won't die?How do I programatically kill the CCLibrary process by PID?How does one start a bash command that doesn't close on Terminal quit?Quit terminal but store the session for next startHow to switch focus to the app based on its PID from CLI?How to set a fixed title for a terminal in Mac?How can I open an app using Terminal?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








21















I want to quit a certain applications on my Mac using Terminal. For example, how do I kill “Slack”? Do I need its PID number?










share|improve this question
































    21















    I want to quit a certain applications on my Mac using Terminal. For example, how do I kill “Slack”? Do I need its PID number?










    share|improve this question




























      21












      21








      21


      3






      I want to quit a certain applications on my Mac using Terminal. For example, how do I kill “Slack”? Do I need its PID number?










      share|improve this question
















      I want to quit a certain applications on my Mac using Terminal. For example, how do I kill “Slack”? Do I need its PID number?







      macos terminal command-line






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 29 at 1:23









      bmike

      168k46 gold badges304 silver badges662 bronze badges




      168k46 gold badges304 silver badges662 bronze badges










      asked Mar 27 at 14:15









      BrainmaniacBrainmaniac

      3532 silver badges10 bronze badges




      3532 silver badges10 bronze badges























          5 Answers
          5






          active

          oldest

          votes


















          24
















          No, you do not need to know its PID.



          You can use:



          pkill -x Slack


          Or:



          killall Slack



          Note: Be sure to read the manual page for whichever command you choose to use, in order to see the various options available to the command, as may be relevant to its particular usage. In Terminal type e.g. man pkill and press enter, or just type the command and right-click on it, then select: Open man Page






          share|improve this answer


































            18
















            You can use AppleScript to tell the application to quit:



            osascript -e 'quit app "Slack"'


            this will tell the application to quit and will start all the save and cleanup tasks. Or you can send the TERM signal with pkill but it could be that the application will not shut down cleanly



            pkill -x Slack





            share|improve this answer






















            • 7





              This is the best method, because it replicates what happens when you use File>Quit from the menu.

              – Barmar
              Mar 28 at 16:15






            • 2





              Huh. I've always used osascript -e 'tell application "Slack" to quit' but if the shorter syntax works, then that's obviously preferable. This is definitely a better answer than anything suggesting kill or any of its variants.

              – TJ Luoma
              Mar 30 at 2:58











            • @TJLuoma I think if you select the correct signal, then pkill is as graceful as any other method. I too favour the AppleScript, though created a function quit to make it breezy. However, if creating an AppleScript process isn’t necessary, pkill -QUIT -x Slack should be fine.

              – CJK
              Apr 17 at 20:50


















            12
















            Since I don't yet have the reputation to comment, I'm saying this as a separate answer. pkill without any flags does not match a specific process! For example, running pkill foo would target processes named foo, but would also target processes named foobar. This is because it uses regular expressions.



            If you wish to kill a specific process, you can pass it the -x flag. For example, pkill -x foo. This will use exact names instead of regular expressions.



            For example, in your case, pkill -x Slack will do the trick.






            share|improve this answer



























            • To turn this into a full answer can you please add the name of the Slack process to kill?

              – nohillside
              Mar 29 at 16:48


















            8
















            You can install htop (via brew for instance).



            You'll need to run this as root or with sudo. Essentially, it's a text
            based Activity Monitor.



            Select the process you want to kill (either with arrow keys or a mouse).



            Then press k to send the process a signal and then 9 to choose the SIGKILL signal.






            share|improve this answer

















            We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.























              6
















              I'm not sure for Slack, but some Applications will run multiple Processes and you may want to kill just one (I find I often need to do this with iTunes, for example). In that case, you can run



              ps -e | grep -i slack


              To find all Processes with case-insensitive "slack" in the name. The output should look like (without the header):



              PID TTY TIME CMD
              649 pts/1 00:00:00 bash


              That first column will be your PID. You can then use that to kill specifically that process:



              kill -9 649


              Replacing 649 with your PID you found from calling ps.






              share|improve this answer




















              • 2





                kill sends a signal to terminate the app. It is not necessary to use -9 (kill) if the application is responding. You risk to loose unsaved data

                – Matteo
                Mar 28 at 17:58











              • Similarly, if you did happen to want to kill, say, all 5 instances of some named process, you could filter the output of ps on the CMD value and then kill all the first entries on those lines.

                – Carl Witthoft
                Mar 29 at 14:59






              • 1





                @Carl Witthoft, you can simply use killall procname, e.g. killall Slack and it will kill all occurrences of Slack or whatever procname is. No need to use ps!

                – user3439894
                Mar 29 at 22:26











              • So, pgrep is a nice command that combines ps and grip.

                – Harv
                Apr 3 at 0:47





















              5 Answers
              5






              active

              oldest

              votes








              5 Answers
              5






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              24
















              No, you do not need to know its PID.



              You can use:



              pkill -x Slack


              Or:



              killall Slack



              Note: Be sure to read the manual page for whichever command you choose to use, in order to see the various options available to the command, as may be relevant to its particular usage. In Terminal type e.g. man pkill and press enter, or just type the command and right-click on it, then select: Open man Page






              share|improve this answer































                24
















                No, you do not need to know its PID.



                You can use:



                pkill -x Slack


                Or:



                killall Slack



                Note: Be sure to read the manual page for whichever command you choose to use, in order to see the various options available to the command, as may be relevant to its particular usage. In Terminal type e.g. man pkill and press enter, or just type the command and right-click on it, then select: Open man Page






                share|improve this answer





























                  24














                  24










                  24









                  No, you do not need to know its PID.



                  You can use:



                  pkill -x Slack


                  Or:



                  killall Slack



                  Note: Be sure to read the manual page for whichever command you choose to use, in order to see the various options available to the command, as may be relevant to its particular usage. In Terminal type e.g. man pkill and press enter, or just type the command and right-click on it, then select: Open man Page






                  share|improve this answer















                  No, you do not need to know its PID.



                  You can use:



                  pkill -x Slack


                  Or:



                  killall Slack



                  Note: Be sure to read the manual page for whichever command you choose to use, in order to see the various options available to the command, as may be relevant to its particular usage. In Terminal type e.g. man pkill and press enter, or just type the command and right-click on it, then select: Open man Page







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Mar 29 at 0:50

























                  answered Mar 27 at 14:26









                  user3439894user3439894

                  31.8k7 gold badges49 silver badges70 bronze badges




                  31.8k7 gold badges49 silver badges70 bronze badges


























                      18
















                      You can use AppleScript to tell the application to quit:



                      osascript -e 'quit app "Slack"'


                      this will tell the application to quit and will start all the save and cleanup tasks. Or you can send the TERM signal with pkill but it could be that the application will not shut down cleanly



                      pkill -x Slack





                      share|improve this answer






















                      • 7





                        This is the best method, because it replicates what happens when you use File>Quit from the menu.

                        – Barmar
                        Mar 28 at 16:15






                      • 2





                        Huh. I've always used osascript -e 'tell application "Slack" to quit' but if the shorter syntax works, then that's obviously preferable. This is definitely a better answer than anything suggesting kill or any of its variants.

                        – TJ Luoma
                        Mar 30 at 2:58











                      • @TJLuoma I think if you select the correct signal, then pkill is as graceful as any other method. I too favour the AppleScript, though created a function quit to make it breezy. However, if creating an AppleScript process isn’t necessary, pkill -QUIT -x Slack should be fine.

                        – CJK
                        Apr 17 at 20:50















                      18
















                      You can use AppleScript to tell the application to quit:



                      osascript -e 'quit app "Slack"'


                      this will tell the application to quit and will start all the save and cleanup tasks. Or you can send the TERM signal with pkill but it could be that the application will not shut down cleanly



                      pkill -x Slack





                      share|improve this answer






















                      • 7





                        This is the best method, because it replicates what happens when you use File>Quit from the menu.

                        – Barmar
                        Mar 28 at 16:15






                      • 2





                        Huh. I've always used osascript -e 'tell application "Slack" to quit' but if the shorter syntax works, then that's obviously preferable. This is definitely a better answer than anything suggesting kill or any of its variants.

                        – TJ Luoma
                        Mar 30 at 2:58











                      • @TJLuoma I think if you select the correct signal, then pkill is as graceful as any other method. I too favour the AppleScript, though created a function quit to make it breezy. However, if creating an AppleScript process isn’t necessary, pkill -QUIT -x Slack should be fine.

                        – CJK
                        Apr 17 at 20:50













                      18














                      18










                      18









                      You can use AppleScript to tell the application to quit:



                      osascript -e 'quit app "Slack"'


                      this will tell the application to quit and will start all the save and cleanup tasks. Or you can send the TERM signal with pkill but it could be that the application will not shut down cleanly



                      pkill -x Slack





                      share|improve this answer















                      You can use AppleScript to tell the application to quit:



                      osascript -e 'quit app "Slack"'


                      this will tell the application to quit and will start all the save and cleanup tasks. Or you can send the TERM signal with pkill but it could be that the application will not shut down cleanly



                      pkill -x Slack






                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Mar 28 at 21:17

























                      answered Mar 28 at 6:52









                      MatteoMatteo

                      5,51413 gold badges58 silver badges102 bronze badges




                      5,51413 gold badges58 silver badges102 bronze badges










                      • 7





                        This is the best method, because it replicates what happens when you use File>Quit from the menu.

                        – Barmar
                        Mar 28 at 16:15






                      • 2





                        Huh. I've always used osascript -e 'tell application "Slack" to quit' but if the shorter syntax works, then that's obviously preferable. This is definitely a better answer than anything suggesting kill or any of its variants.

                        – TJ Luoma
                        Mar 30 at 2:58











                      • @TJLuoma I think if you select the correct signal, then pkill is as graceful as any other method. I too favour the AppleScript, though created a function quit to make it breezy. However, if creating an AppleScript process isn’t necessary, pkill -QUIT -x Slack should be fine.

                        – CJK
                        Apr 17 at 20:50












                      • 7





                        This is the best method, because it replicates what happens when you use File>Quit from the menu.

                        – Barmar
                        Mar 28 at 16:15






                      • 2





                        Huh. I've always used osascript -e 'tell application "Slack" to quit' but if the shorter syntax works, then that's obviously preferable. This is definitely a better answer than anything suggesting kill or any of its variants.

                        – TJ Luoma
                        Mar 30 at 2:58











                      • @TJLuoma I think if you select the correct signal, then pkill is as graceful as any other method. I too favour the AppleScript, though created a function quit to make it breezy. However, if creating an AppleScript process isn’t necessary, pkill -QUIT -x Slack should be fine.

                        – CJK
                        Apr 17 at 20:50







                      7




                      7





                      This is the best method, because it replicates what happens when you use File>Quit from the menu.

                      – Barmar
                      Mar 28 at 16:15





                      This is the best method, because it replicates what happens when you use File>Quit from the menu.

                      – Barmar
                      Mar 28 at 16:15




                      2




                      2





                      Huh. I've always used osascript -e 'tell application "Slack" to quit' but if the shorter syntax works, then that's obviously preferable. This is definitely a better answer than anything suggesting kill or any of its variants.

                      – TJ Luoma
                      Mar 30 at 2:58





                      Huh. I've always used osascript -e 'tell application "Slack" to quit' but if the shorter syntax works, then that's obviously preferable. This is definitely a better answer than anything suggesting kill or any of its variants.

                      – TJ Luoma
                      Mar 30 at 2:58













                      @TJLuoma I think if you select the correct signal, then pkill is as graceful as any other method. I too favour the AppleScript, though created a function quit to make it breezy. However, if creating an AppleScript process isn’t necessary, pkill -QUIT -x Slack should be fine.

                      – CJK
                      Apr 17 at 20:50





                      @TJLuoma I think if you select the correct signal, then pkill is as graceful as any other method. I too favour the AppleScript, though created a function quit to make it breezy. However, if creating an AppleScript process isn’t necessary, pkill -QUIT -x Slack should be fine.

                      – CJK
                      Apr 17 at 20:50











                      12
















                      Since I don't yet have the reputation to comment, I'm saying this as a separate answer. pkill without any flags does not match a specific process! For example, running pkill foo would target processes named foo, but would also target processes named foobar. This is because it uses regular expressions.



                      If you wish to kill a specific process, you can pass it the -x flag. For example, pkill -x foo. This will use exact names instead of regular expressions.



                      For example, in your case, pkill -x Slack will do the trick.






                      share|improve this answer



























                      • To turn this into a full answer can you please add the name of the Slack process to kill?

                        – nohillside
                        Mar 29 at 16:48















                      12
















                      Since I don't yet have the reputation to comment, I'm saying this as a separate answer. pkill without any flags does not match a specific process! For example, running pkill foo would target processes named foo, but would also target processes named foobar. This is because it uses regular expressions.



                      If you wish to kill a specific process, you can pass it the -x flag. For example, pkill -x foo. This will use exact names instead of regular expressions.



                      For example, in your case, pkill -x Slack will do the trick.






                      share|improve this answer



























                      • To turn this into a full answer can you please add the name of the Slack process to kill?

                        – nohillside
                        Mar 29 at 16:48













                      12














                      12










                      12









                      Since I don't yet have the reputation to comment, I'm saying this as a separate answer. pkill without any flags does not match a specific process! For example, running pkill foo would target processes named foo, but would also target processes named foobar. This is because it uses regular expressions.



                      If you wish to kill a specific process, you can pass it the -x flag. For example, pkill -x foo. This will use exact names instead of regular expressions.



                      For example, in your case, pkill -x Slack will do the trick.






                      share|improve this answer















                      Since I don't yet have the reputation to comment, I'm saying this as a separate answer. pkill without any flags does not match a specific process! For example, running pkill foo would target processes named foo, but would also target processes named foobar. This is because it uses regular expressions.



                      If you wish to kill a specific process, you can pass it the -x flag. For example, pkill -x foo. This will use exact names instead of regular expressions.



                      For example, in your case, pkill -x Slack will do the trick.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Mar 29 at 21:36

























                      answered Mar 27 at 21:59









                      user321134user321134

                      1435 bronze badges




                      1435 bronze badges















                      • To turn this into a full answer can you please add the name of the Slack process to kill?

                        – nohillside
                        Mar 29 at 16:48

















                      • To turn this into a full answer can you please add the name of the Slack process to kill?

                        – nohillside
                        Mar 29 at 16:48
















                      To turn this into a full answer can you please add the name of the Slack process to kill?

                      – nohillside
                      Mar 29 at 16:48





                      To turn this into a full answer can you please add the name of the Slack process to kill?

                      – nohillside
                      Mar 29 at 16:48











                      8
















                      You can install htop (via brew for instance).



                      You'll need to run this as root or with sudo. Essentially, it's a text
                      based Activity Monitor.



                      Select the process you want to kill (either with arrow keys or a mouse).



                      Then press k to send the process a signal and then 9 to choose the SIGKILL signal.






                      share|improve this answer

















                      We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.




















                        8
















                        You can install htop (via brew for instance).



                        You'll need to run this as root or with sudo. Essentially, it's a text
                        based Activity Monitor.



                        Select the process you want to kill (either with arrow keys or a mouse).



                        Then press k to send the process a signal and then 9 to choose the SIGKILL signal.






                        share|improve this answer

















                        We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.


















                          8














                          8










                          8









                          You can install htop (via brew for instance).



                          You'll need to run this as root or with sudo. Essentially, it's a text
                          based Activity Monitor.



                          Select the process you want to kill (either with arrow keys or a mouse).



                          Then press k to send the process a signal and then 9 to choose the SIGKILL signal.






                          share|improve this answer















                          You can install htop (via brew for instance).



                          You'll need to run this as root or with sudo. Essentially, it's a text
                          based Activity Monitor.



                          Select the process you want to kill (either with arrow keys or a mouse).



                          Then press k to send the process a signal and then 9 to choose the SIGKILL signal.







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Mar 29 at 0:42









                          Dancrumb

                          1255 bronze badges




                          1255 bronze badges










                          answered Mar 27 at 17:20









                          BEFioBEFio

                          811 bronze badge




                          811 bronze badge





                          We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.








                          We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.






                          We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.























                              6
















                              I'm not sure for Slack, but some Applications will run multiple Processes and you may want to kill just one (I find I often need to do this with iTunes, for example). In that case, you can run



                              ps -e | grep -i slack


                              To find all Processes with case-insensitive "slack" in the name. The output should look like (without the header):



                              PID TTY TIME CMD
                              649 pts/1 00:00:00 bash


                              That first column will be your PID. You can then use that to kill specifically that process:



                              kill -9 649


                              Replacing 649 with your PID you found from calling ps.






                              share|improve this answer




















                              • 2





                                kill sends a signal to terminate the app. It is not necessary to use -9 (kill) if the application is responding. You risk to loose unsaved data

                                – Matteo
                                Mar 28 at 17:58











                              • Similarly, if you did happen to want to kill, say, all 5 instances of some named process, you could filter the output of ps on the CMD value and then kill all the first entries on those lines.

                                – Carl Witthoft
                                Mar 29 at 14:59






                              • 1





                                @Carl Witthoft, you can simply use killall procname, e.g. killall Slack and it will kill all occurrences of Slack or whatever procname is. No need to use ps!

                                – user3439894
                                Mar 29 at 22:26











                              • So, pgrep is a nice command that combines ps and grip.

                                – Harv
                                Apr 3 at 0:47
















                              6
















                              I'm not sure for Slack, but some Applications will run multiple Processes and you may want to kill just one (I find I often need to do this with iTunes, for example). In that case, you can run



                              ps -e | grep -i slack


                              To find all Processes with case-insensitive "slack" in the name. The output should look like (without the header):



                              PID TTY TIME CMD
                              649 pts/1 00:00:00 bash


                              That first column will be your PID. You can then use that to kill specifically that process:



                              kill -9 649


                              Replacing 649 with your PID you found from calling ps.






                              share|improve this answer




















                              • 2





                                kill sends a signal to terminate the app. It is not necessary to use -9 (kill) if the application is responding. You risk to loose unsaved data

                                – Matteo
                                Mar 28 at 17:58











                              • Similarly, if you did happen to want to kill, say, all 5 instances of some named process, you could filter the output of ps on the CMD value and then kill all the first entries on those lines.

                                – Carl Witthoft
                                Mar 29 at 14:59






                              • 1





                                @Carl Witthoft, you can simply use killall procname, e.g. killall Slack and it will kill all occurrences of Slack or whatever procname is. No need to use ps!

                                – user3439894
                                Mar 29 at 22:26











                              • So, pgrep is a nice command that combines ps and grip.

                                – Harv
                                Apr 3 at 0:47














                              6














                              6










                              6









                              I'm not sure for Slack, but some Applications will run multiple Processes and you may want to kill just one (I find I often need to do this with iTunes, for example). In that case, you can run



                              ps -e | grep -i slack


                              To find all Processes with case-insensitive "slack" in the name. The output should look like (without the header):



                              PID TTY TIME CMD
                              649 pts/1 00:00:00 bash


                              That first column will be your PID. You can then use that to kill specifically that process:



                              kill -9 649


                              Replacing 649 with your PID you found from calling ps.






                              share|improve this answer













                              I'm not sure for Slack, but some Applications will run multiple Processes and you may want to kill just one (I find I often need to do this with iTunes, for example). In that case, you can run



                              ps -e | grep -i slack


                              To find all Processes with case-insensitive "slack" in the name. The output should look like (without the header):



                              PID TTY TIME CMD
                              649 pts/1 00:00:00 bash


                              That first column will be your PID. You can then use that to kill specifically that process:



                              kill -9 649


                              Replacing 649 with your PID you found from calling ps.







                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered Mar 27 at 18:57









                              scohe001scohe001

                              3571 gold badge3 silver badges10 bronze badges




                              3571 gold badge3 silver badges10 bronze badges










                              • 2





                                kill sends a signal to terminate the app. It is not necessary to use -9 (kill) if the application is responding. You risk to loose unsaved data

                                – Matteo
                                Mar 28 at 17:58











                              • Similarly, if you did happen to want to kill, say, all 5 instances of some named process, you could filter the output of ps on the CMD value and then kill all the first entries on those lines.

                                – Carl Witthoft
                                Mar 29 at 14:59






                              • 1





                                @Carl Witthoft, you can simply use killall procname, e.g. killall Slack and it will kill all occurrences of Slack or whatever procname is. No need to use ps!

                                – user3439894
                                Mar 29 at 22:26











                              • So, pgrep is a nice command that combines ps and grip.

                                – Harv
                                Apr 3 at 0:47













                              • 2





                                kill sends a signal to terminate the app. It is not necessary to use -9 (kill) if the application is responding. You risk to loose unsaved data

                                – Matteo
                                Mar 28 at 17:58











                              • Similarly, if you did happen to want to kill, say, all 5 instances of some named process, you could filter the output of ps on the CMD value and then kill all the first entries on those lines.

                                – Carl Witthoft
                                Mar 29 at 14:59






                              • 1





                                @Carl Witthoft, you can simply use killall procname, e.g. killall Slack and it will kill all occurrences of Slack or whatever procname is. No need to use ps!

                                – user3439894
                                Mar 29 at 22:26











                              • So, pgrep is a nice command that combines ps and grip.

                                – Harv
                                Apr 3 at 0:47








                              2




                              2





                              kill sends a signal to terminate the app. It is not necessary to use -9 (kill) if the application is responding. You risk to loose unsaved data

                              – Matteo
                              Mar 28 at 17:58





                              kill sends a signal to terminate the app. It is not necessary to use -9 (kill) if the application is responding. You risk to loose unsaved data

                              – Matteo
                              Mar 28 at 17:58













                              Similarly, if you did happen to want to kill, say, all 5 instances of some named process, you could filter the output of ps on the CMD value and then kill all the first entries on those lines.

                              – Carl Witthoft
                              Mar 29 at 14:59





                              Similarly, if you did happen to want to kill, say, all 5 instances of some named process, you could filter the output of ps on the CMD value and then kill all the first entries on those lines.

                              – Carl Witthoft
                              Mar 29 at 14:59




                              1




                              1





                              @Carl Witthoft, you can simply use killall procname, e.g. killall Slack and it will kill all occurrences of Slack or whatever procname is. No need to use ps!

                              – user3439894
                              Mar 29 at 22:26





                              @Carl Witthoft, you can simply use killall procname, e.g. killall Slack and it will kill all occurrences of Slack or whatever procname is. No need to use ps!

                              – user3439894
                              Mar 29 at 22:26













                              So, pgrep is a nice command that combines ps and grip.

                              – Harv
                              Apr 3 at 0:47






                              So, pgrep is a nice command that combines ps and grip.

                              – Harv
                              Apr 3 at 0:47




                              Popular posts from this blog

                              SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                              용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                              155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해