Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
P
proj1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hadi.atteh
proj1
Commits
a4cd4bcc
Commit
a4cd4bcc
authored
Jun 30, 2024
by
hadi.atteh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added last question answer
parent
cfc44572
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
bash3.sh
bash3.sh
+23
-0
No files found.
bash3.sh
0 → 100755
View file @
a4cd4bcc
#!/bin/bash
ip_range
=
$1
start_ip
=
$(
echo
"
$ip_range
"
|
cut
-d
'-'
-f1
)
end_ip
=
$(
echo
"
$ip_range
"
|
cut
-d
'-'
-f2
)
start
=
$(
echo
"
$start_ip
"
|
cut
-d
'.'
-f4
)
end
=
$(
echo
"
$end_ip
"
|
cut
-d
'.'
-f4
)
if
((
start
>=
0
&&
end <
=
256
&&
start <
=
end
))
then
for
((
n
=
start
;
n<
=
end
;
n++
))
;
do
host
=
"192.168.0.
$n
"
ping
-c2
"
$host
"
&> /dev/null
if
[
$?
=
0
]
;
then
echo
"
$host
is UP"
else
echo
"
$host
is DOWN"
fi
done
else
echo
"incorrect ip range, use the format 192.168.0.startnumber-192.168.0.endnumber"
fi
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment