Infrastructure as a code Infrastructure as Code it is the process of managing infrastructure in a file or files rather than manually configuring resources in a user interface. A resource in this instance is any piece of infrastructure in a given environment, such as a virtual machine, security group, network interface, etc. Terraform is a […]
Tag: Environmental variables
Shell Scripting
1. Shell Scripting Introduction
How to execute the script? use ./script-name.sh else can do sh script-name.sh for Bourne shell else bash script-name.sh for Bourne again shell execution. This does not matter which shell you use sh or bash as for normal scripts it will have same output, this is needed when you want specific shell to run your script. […]