Home > Article > Software Tutorial > how to exit scrcpy
This article provides instructions on how to exit the scrcpy application, which is used for mirroring and controlling Android devices from a computer. It explains how to exit scrcpy on Windows, Mac, and Linux using keyboard shortcuts and commands, in
To exit scrcpy, simply press Ctrl+C
(Windows/Linux) or Cmd+C
(Mac). This will terminate the scrcpy process and close the window.
To exit scrcpy on Windows, press Ctrl+C
in the Command Prompt window where you started scrcpy.
To exit scrcpy on Mac, press Cmd+C
in the Terminal window where you started scrcpy.
To forcefully quit scrcpy on Linux, you can use the kill
command. To do this, first find the process ID (PID) of the scrcpy process using the command pidof scrcpy
. Once you have the PID, you can use the following command to kill the scrcpy process:
<code>kill <PID></code>
The above is the detailed content of how to exit scrcpy. For more information, please follow other related articles on the PHP Chinese website!