This repository contains shell script files for Unix-based system that automate mundane processes.
mkdir ~/bin && echo "export PATH=$PATH:/Users/$USER/bin" >> ~/.bash_profile && source ~/.bash_profile && cd bin && git clone https://github.com/mohshbool/make-life-easier.git . && chmod -R u+x .
NOTE: This will guide you through the steps of making a universal script file that can be run from anywhere in Terminal.
$ cd ~
$ mkdir bin
Open .bash_profile
(if you're using bash) located on the user's root directory /Users/$whoami/.bash_profile
in your favorite text editor.
$ cd ~
$ open .bash_profile
export PATH=$PATH:/Users/$USER/bin
$ cd ~/bin
$ git clone https://github.com/mohshbool/make-life-easier.git .
$ cd ~/bin
$ chmod -R u+x .
$ android-emulator
to show available devices and then prompt you to enter the desired device to launch.$ android-emulator show
to show available devices.$ android-emulator run <device_name>
to run a specific device.
-
Get rid of helpers and migrate functionality into shell script -
Make device selection by number for ease of use on android-emulator