mirror of https://github.com/dirtbags/moth.git
5 lines
85 B
Bash
5 lines
85 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
ifconfig $1 | grep "inet addr" | awk '{print $2}' | awk -F: '{print $2}'
|
||
|
|