Horje
adb screenrecord Code Example
adb recorder
$ adb shell screenrecord /sdcard/video.mp4
#if you just get a black screen from recording - the resolution could be too high
#set a custom record resolution with --size parameter

$ adb shell screenrecord --size 1280x720 /sdcard/video.mp4
Source: medium.com
adb screenrecord
# look at source for more examples
adb shell screenrecord /mnt/sdcard/Download/test.mp4
Source: adbshell.com
adb screenrecord
# get device IMEI
adb shell "service call iphonesubinfo 1 | cut -c 52-66 | tr -d '.[:space:]'"

# get device phone number
adb shell "service call iphonesubinfo 18 | cut -c 52-66 | tr -d '.[:space:]+'"

# get Android ID
adb shell settings get secure android_id

# get device Serial Number
adb shell getprop ro.serialno

#Note: No root is needed for any of the above commands




Shell

Related
powershell show first few lines of command Code Example powershell show first few lines of command Code Example
dos view all files Code Example dos view all files Code Example
github color Code Example github color Code Example
terminator linux is not start Code Example terminator linux is not start Code Example
adb screen record Code Example adb screen record Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13