The android system comes with some very useful utilities that we can execute programmatically. Although Android provides API wrappers for most of the utilities that somehow solved the purpose. But sometimes we are in need of some functionality whose wrapper is not available.
System/Bin
Well, this is the place where all the executables that the android system uses internally. This directory contains a bunch of executable programs that are very useful. Similarly, you can also use it for your own purpose. But keep in mind some of the utilities are not executable directly and it requires root permission.
Method 1 – Using System Terminal/Command Prompt
Open your terminal if you are using mac or linux os or command prompt if you are using windows based operating system.
- Connect your device or start the android emulator
- Type adb devices – This will show your connected device.
- Type adb shell and press enter
- You will get access to your device/emulator shell access and now you can execute shell commands directly on your android system.
Type ls on the terminal and press enter.

Now type cd system/bin and hit enter button. And now type ls and press enter. Now you will see all the executables present in the folder.

Useful Utilities
- clear – This utility clear all the terminal text
- date – Prints the current date-time
- whoami – print the current user
- uptime – shows the device uptime
- pwd – pwd stands for the present working directory, It prints the location of the current directory
- ip – prints the IP address. There are various switches available. Ex. IP -4 address – Print the ipv4 address
- df – shows the disk space
- reboot – It reboots the device
- uname – prints the os name.
- unzip – to unzip a file
- screenrecord – To record screen. It takes some parameters like –size,–bit-rate, time-limit, etc
- screencap – To capture the screenshot of the device screen.
- pm – pm stands for the package manager, You can install any app using pm utility directly ping – To check the internet connectivity
- am – am stands for activity manager.
- top – The top utility shows all the processes running in the android system with their PID, user, ram, CPU. It also shows used, free, cached,Total, swap memory
- logcat – Display all the device logs.
- hostname – prints the hostname i.e localhost
- kill – You can kill a process by providing PID.
- locksettings – You can set/change/clear/verify password/pattern on your device. To set the password type – locksettings set-password test where is “test” password. Similarly to clear the old password type – locksettings clear –old test.
- cal – Displays the calendar
- cat – To display contents on the terminal/screen
- bzip2 – To compress files
- getprop – It displays all the properties.
- setprop – You can modify properties using this utility
- mkdir – To create a new directory
- cp – To copy files from one to another.
- mv – To move a file from one place to another.
- wm – wm stands for Window Manager. You can print window size, density, scaling, rotate the screen, find folded-area, etc
- printenv – Displays all the environment variables set by the android system.
- tar – You can also create tar files using tar utility
- touch – You can update file access, modification time
- rmdir – To remove directory
- sm – sm stands for storage manager. You can list disk/volumes, can format, mount, unmount volumes, etc.
- service – You can list all the running services by issuing the following service list
Method 2 – Programmatically
What we just saw above same thing we can do it in a programmatic way also.
//Setting the screen password to test
Process process = Runtime.getRuntime().exec("/system/bin/locksettings set-password test");
BufferedReader mReader = new BufferedReader(
new InputStreamReader(process.getInputStream()));
output = mReader.readLine();
Log.i("Shell Output: ", "" + output);
//Get IPV4 address
Process process = Runtime.getRuntime().exec("/system/bin/ip -4 address");
BufferedReader mReader = new BufferedReader(
new InputStreamReader(process.getInputStream()));
output = mReader.readLine();
Log.i("Shell Output: ", "" + output);
// Reboot device in recovery mode
Process process = Runtime.getRuntime().exec("/system/bin/reboot recovery");
BufferedReader mReader = new BufferedReader(
new InputStreamReader(process.getInputStream()));
output = mReader.readLine();
Log.i("Shell Output: ", "" + output);
// Ping Ip address
Process process = Runtime.getRuntime().exec("/system/bin/ping 8.8.8.8");
BufferedReader mReader = new BufferedReader(
new InputStreamReader(process.getInputStream()));
output = mReader.readLine();
Log.i("Shell Output: ", "" + output);
// Get Storage Space
Process process = Runtime.getRuntime().exec("/system/bin/df");
BufferedReader mReader = new BufferedReader(
new InputStreamReader(process.getInputStream()));
output = mReader.readLine();
Log.i("Shell Output: ", "" + output);
You can also checkout my other android articles from here