Files
shell-scripting-tutorial/myfirstscript.sh
FastFingertips db20252cfc fix syntax
2021-12-22 08:21:15 +03:00

14 lines
306 B
Bash

#!/bin/bash
#Purpose: This is my first script in this shell scripting video tutorial
#Date: Wed May 2 17:10:13 IST 2018
#Author: Ankam Ravi Kumar
#Version: 1.0
#Modified Date:
#Modified by:
# START
echo "Welcome $USERNAME"
echo "Your present working directory is `pwd`"
echo "Today date is `date`"
# END