LoginSignup
3
1

More than 5 years have passed since last update.

起動しているXcodeのプロセスをすべて強制終了するコマンド

Last updated at Posted at 2017-09-17

Xcode使用中/終了中に虹色のくるくるが出て固まってしまった場合等。

ターミナルを起動して、以下のコマンドを実行します。
ps -ef | grep "MacOS/Xcode$" | grep -v grep | awk '{print $2}' | xargs kill -KILL

↑でなんかうまくいかない場合はこちら。こっちはちょっと乱暴に皆殺しします。
ps -ef | grep Xcode | grep -v grep | awk '{print $2}' | xargs kill -KILL

個別のXcodeの終了方法などはいい方法があれば追記します。

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1