Short list of bash(or other) commands that we use:
Kill all Android emulators
adb devices | grep emulator | cut -f1 | while read line; do adb -s $line emu kill; done
Kill Appium process command on MacOS
- Run
ps -A | grep appium
- Note the process ID
- Run
kill [process ID]
Visual Studio Code cheat sheet (MacOS)
Code format: Shift + Option + F – I use this to format a JSON file for example, just make sure that Visual Studio Code sees it as JSON type (bottom right of the screen)