update submodules
This commit is contained in:
parent
1d09e7368d
commit
2f4b96a939
8 changed files with 19 additions and 6 deletions
5
bin/getfreeip
Normal file
5
bin/getfreeip
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
N=$1
|
||||
|
||||
sudo nmap -v -sn -n $1 -oG - | awk '/Status: Down/{print $2}'
|
9
bin/getusedip
Normal file
9
bin/getusedip
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
N=$1
|
||||
DNS=$1
|
||||
|
||||
sudo nmap -v -sn -n $1 -oG - | awk '!/Status: Down/{print $2}'|while read i;do
|
||||
echo "$i: $(dig "$DNS" -x $i +short +search)"
|
||||
|
||||
done
|
|
@ -5,4 +5,3 @@ $(getbashrcfile) ~/.aliases
|
|||
${MSC_BASE}/aliases
|
||||
${MSC_BASE}/PS1
|
||||
${MSC_BASE}/bash_completion.d/*
|
||||
${MSC_BASE}/bin/getfreeip
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 33e67af2418e4775c2a7abc6e8fef401e697e1eb
|
||||
Subproject commit bdd9f58b969b153a586d22435c987a846da2922b
|
|
@ -1 +1 @@
|
|||
Subproject commit c4c639f3cacd1b874ed6f5f196fac772e089c932
|
||||
Subproject commit 1b320083dc0892b8a874a17c75abfea86c801434
|
|
@ -1 +1 @@
|
|||
Subproject commit 93f41ace7dc068cf89314bcea23bdf8da686407a
|
||||
Subproject commit 4d29c1d6a0def18923b4762c8f85ca3ee5ae6c83
|
|
@ -1 +1 @@
|
|||
Subproject commit 07d19f0299762669c6f93fbadb8249da6ba9de62
|
||||
Subproject commit 8eadb5bd8fead8594d201f7cd78aed912243fd9f
|
|
@ -1 +1 @@
|
|||
Subproject commit 6aaddfde21fe9e7acbe448b92b3cbb67f2fe1fc1
|
||||
Subproject commit 3c6d80fc59d57ed2fbef14333c0efef02cbcf2f8
|
Loading…
Reference in a new issue