Files
shell-scripting-tutorial/echo.sh
2018-06-20 15:37:36 +05:30

14 lines
282 B
Bash

#!/bin/bash
#Purpose: eval command Evaluating twice
#Version:1.0
#Created Date: Wed Jun 13 22:09:59 IST 2018
#Modified Date:
#WebSite: https://arkit.co.in
#Author: Ankam Ravi Kumar
# START #
echo "current location files are `ls`"
echo "current working directory is `pwd`"
# END #