checkARB

(★ 14)

Use the script to view the current device's Antirollback value on Android

File Explorer

  • bin.zip
  • bin_old.zip
  • bin_old1.zip
  • build.sh
  • checkarb.sh
  • checkarb_6.2.sh
  • checkarb_zh.sh
  • checkarb_zh_6.2.sh
  • LICENSE.txt
  • README.md
  • README_zh.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

busybox

View Details ▼

A collection of small system utilities in a single executable.
Executing `busybox` via a symlink is equivalent to running `busybox symlink_name`.
Linux distributions that use BusyBox will usually provide symlinks for all programs.

busybox {{ls|rm|mkdir|cat|...}} {{args}}

Execute a BusyBox function:

busybox --help

Display help and a list of functions:

🔍

trap

View Details ▼

Execute a command upon an event.

trap

List the commands and the names of the expected events:

trap -l

List the available event names (e.g. `SIGWINCH`):

trap 'echo "Caught signal {{SIGHUP}}"' {{HUP}}

Execute a command when a signal is received:

🔍

dialog

View Details ▼

Display dialog boxes on the terminal.
See also: `gum`, `whiptail`.

dialog --msgbox "{{Message}}" {{height}} {{width}}

Display a message:

dialog --inputbox "{{Enter text:}}" {{8}} {{40}} 2>{{output.txt}}

Prompt the user for text:

dialog --yesno "{{Continue?}}" {{7}} {{40}}

Prompt the user for a yes/no question:

// repository documentation