Skip to content

Instantly share code, notes, and snippets.

View YeeaaahMan's full-sized avatar

Siarhei Litvinchuk YeeaaahMan

View GitHub Profile
@YeeaaahMan
YeeaaahMan / AdbCommands
Created March 14, 2024 07:09 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@YeeaaahMan
YeeaaahMan / install_command_line_tools_no_prompt
Created April 8, 2022 09:30 — forked from brysgo/install_command_line_tools_no_prompt
Install xcode command line tools without prompt
do shell script "xcode-select --install"
do shell script "sleep 1"
tell application "System Events"
tell process "Install Command Line Developer Tools"
keystroke return
click button "Agree" of window "License Agreement"
end tell
end tell