Bash Basics

In this tutorial you will how to write bash scripts. I will take you step from Hello world to writing your own script that does some repetitive task for you. So, lets get started. Bash stands for Bourne Again shell. If you are using Linux or MAC OS you already have it install by default. You can check which version of bash you are using by bash -v let us create our first bash script that says Hello World. Create a file named helloworld or helloworld.sh. Open in your favorite text editor i will use vim, you can use any eg :nano, gedit, etc. This first line of your script will be #!/bin/bash #! is known as shebang. Which is path to load and run the program using bash. In the next line write echo Hello World. ...

December 18, 2017 · 1 min · Akshay Shipurkar

Mission Accomplished

I had been given some of the lynda courses at work to do so as prerequistes to complete before joining the Jio Cloud team. It was a one mamouth task to complete. Although it look a considerable amount of time and self motivation for the same to be completed, but finally its done and I am extremely happy about it. ![Linux Playlist] (/img/JAWS-Playlists.png) ![Openstack Playlist] (/img/JAWS-Openstack-Playlists.png)

October 27, 2017 · 1 min · Akshay Shipurkar