mirror of
https://github.com/hak5/nano-tetra-modules.git
synced 2025-10-29 16:58:09 +00:00
10 lines
150 B
Bash
Executable File
10 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "Usage: $0 <iface>";
|
|
exit;
|
|
fi
|
|
|
|
|
|
ifconfig $1 | grep inet | awk '{split($2,a,":"); print a[2]}'
|