checkARB
Use the script to view the current device's Antirollback value on Android
File Explorer
- arb_inspector-aarch64-linux-android.zip
- arb_inspector-armv7-linux-androideabi.zip
- extract_arb0.img
- xbl_config_15_arb0.img
- xbl_config_arb0.img
- xbl_config_arb1.img
- 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
jsDelivrjsDelivr 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 ▼
busybox
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 ▼
trap
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 ▼
dialog
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:
