mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-05-31 22:34:43 +00:00
New Post
This commit is contained in:
parent
705bec5366
commit
b979274a6d
1 changed files with 27 additions and 0 deletions
27
content/blog/bashvalidateip.md
Normal file
27
content/blog/bashvalidateip.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
---
|
||||||
|
title: "Quick Bash: Validate IP Address"
|
||||||
|
date: 2020-12-19T20:15:24-05:00
|
||||||
|
draft: false
|
||||||
|
tags: ["bash"]
|
||||||
|
---
|
||||||
|
|
||||||
|
`ipcalc` is a terminal tool that lets you validate an IP address. This proves useful to me as I have scripts that automate certain remote tasks given an IP address. Instead of trusting that an argument passed is a valid IP, why not check it?
|
||||||
|
|
||||||
|
First the script would need to check if `ipcalc` exists.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
if ! command -v ipcalc > /dev/null ; then
|
||||||
|
echo "ipcalc not found. Exiting..."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
```
|
||||||
|
|
||||||
|
Now for this example, we'll validate an IP address stored in the variable `$IP`.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
if ! ipcalc -cs "$IP" ; then
|
||||||
|
echo "Invalid IP Address"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue