I know how to ask questions in bash like "Would you like to create a directory" and based on that input do something. But I would like to create a bash script where I could do:
./somescriptname.sh install
./somescriptname.sh update
./somescriptname.sh assets get asset-name
./somescriptname.sh install
./somescriptname.sh update
./somescriptname.sh assets get all
I am not really sure how to read command line arguments passed in using bash.