macubergeek
IS-IT--Management
when I do arp -a I get this kind of output:
(192.168.1.1)
(192.168.1.5)
(192.168.1.100)
(192.168.1.101)
(192.168.1.255)
All I want to do is to remove the parens and keep the ip address. I've tried this with sed and gotten nowhere.
sed 's/\(//g'
(192.168.1.1)
(192.168.1.5)
(192.168.1.100)
(192.168.1.101)
(192.168.1.255)
All I want to do is to remove the parens and keep the ip address. I've tried this with sed and gotten nowhere.
sed 's/\(//g'