Answers for "kill xcode from command line"

1

kill xcode from command line

#!/bin/bash
echo "Killing xcode..."
kill $(ps aux | grep 'Xcode' | awk '{print $2}')
Posted by: Guest on July-01-2020

Code answers related to "kill xcode from command line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language