Skip to content

Commit

Permalink
Finding current script name
Browse files Browse the repository at this point in the history
  • Loading branch information
Prateek Bhaisora authored and Prateek Bhaisora committed Jan 24, 2024
1 parent b667a7f commit 5fd2902
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion 30_connectivity_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

read -p "Enter the website: " site

ping -c 1 $site
ping -c 1 $site &>/dev/null

if [[ $? -eq 0 ]]
then
Expand Down
5 changes: 5 additions & 0 deletions 35_scriptname.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#/bin/bash

# Helps during logging

echo "The name of this script is ${0}"

0 comments on commit 5fd2902

Please sign in to comment.