Created
October 19, 2023 21:58
-
-
Save insidegui/b570ec998b9e2aeb730f4e142f0593d1 to your computer and use it in GitHub Desktop.
Helper functions for using devicectl to kill processes on connected iOS devices
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add to your zsh profile | |
function devicepid() { | |
if [ -z "$1" ]; then | |
echo "Usage: devicepid <device-name> <search>" | |
echo "Example: devicepid 'iPhone 15 Pro Max' SpringBoard" | |
return 1 | |
fi | |
if [ -z "$2" ]; then | |
echo "Usage: devicepid <device-name> <search>" | |
echo "Example: devicepid 'iPhone 15 Pro Max' SpringBoard" | |
return 1 | |
fi | |
xcrun devicectl device info processes --device "$1" | grep "$2" | awk '{ print $1; }' | |
} | |
func devicekill() { | |
if [ -z "$1" ]; then | |
echo "Usage: devicekill <device-name> <process-name>" | |
echo "Example: devicekill 'iPhone 15 Pro Max' SpringBoard" | |
return 1 | |
fi | |
if [ -z "$2" ]; then | |
echo "Usage: devicekill <device-name> <process-name>" | |
echo "Example: devicekill 'iPhone 15 Pro Max' SpringBoard" | |
return 1 | |
fi | |
TARGETPID=$(devicepid "$1" "$2") | |
if [ $? -ne 0 ]; then | |
echo "Couldn't find PID for $2" | |
return 1 | |
fi | |
echo "Found PID for $2: $TARGETPID" | |
xcrun devicectl device process signal --pid $TARGETPID --signal SIGHUP --device "$1" | |
} | |
func respring() { | |
if [ -z "$1" ]; then | |
echo "Usage: respring <device-name>" | |
return 1 | |
fi | |
devicekill "$1" "SpringBoard" | |
} | |
func devicereboot() { | |
if [ -z "$1" ]; then | |
echo "Usage: devicereboot <device-name>" | |
return 1 | |
fi | |
xcrun devicectl device reboot --device "$1" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks!!! it helps me a lot!!!