Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Very nice intro. I have not gotten into linux scripting yet as I am more of a windows user and as such I use Autoit. But some day I am going to need to script in Linux and this will be a nice foundation to have somewhere to begin from and not feel as “lost” when starting.
Thanks for the feedback @Morthawt! :] Knowing how to write a bash script is really useful later on.
Many people underestimate the power of bash, and often resort (as I used to) to using higher level languages - perl, python, php, for doing something that bash is more than capable of doing itself. cut, head, tail… sed and awk are so powerful - you just have to get around the quirks that they have with regex - some of it’s not exactly standard, or has other flags, options, or ways of functioning.
Since learning how to bash script, I find now I don’t have to inconvenience myself with having to use something like perl and using “system()” a lot, or backticks to capture the command’s output - bash has that all built in and is more than capable of doing everything perl is.
I agree with dan, bash scripting is so useful. I started learning bash when i came across Centmin script. With what I learnt for bash scripting I now wrote and extended/modified version called Centmin Mod http://centminmod.com and have wrote countless bash scripts to automate mundane server administration tasks, from backing of data to installing scripts etc.
Bash scripting is a must learn skill !!! Will save you time in the long run !