Deploying shell script using AWS

Asked By 20 points N/A Posted on -
qa-featured

Does anyone know how to create shell scripts or is it possible to make your own and deploy with AWS (it could be with AWS cloud information) server templates which is an automated server provisioning (may be using centos, Ubuntu or Red Hat Linux OS server Templates) that can be done with right scale using AWS?

SHARE
Answered By 55 points N/A #106731

Deploying shell script using AWS

qa-featured

First follow the steps below to make a shell script for the use in later stages.

Open a text editor. It could be anyone, a word processor or text pad etc.

Type the following commands in it in the order they are written. Don't change the order as it is critical for the system.

#!/bin/bash
clear
echo "Good morning, world."

Save this text file and name it anything. You can run all the scripts using the forward slash because the backward slash is not compatible.

now comes the question of using it in other systems. Well it is something that is different and you have to see the documentation of the cloud computing that you are going to use.

Related Questions