Useful commands

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

  1. Run ps -A | grep appium
  2. Note the process ID
  3. 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)

 

 

 

 

sponsored
Exit mobile version