forked from techarkit/shell-scripting-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathud.sh
More file actions
16 lines (14 loc) · 390 Bytes
/
ud.sh
File metadata and controls
16 lines (14 loc) · 390 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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 "WEl COME TO $USER"
echo " Your present Wroking Directory is `pwd`"
echo "Present Processes are `ps -a`"
echo "Now Time is `date`"
echo "current logged in Details are `finger $USER`"
# END #