You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
204 B
5 lines
204 B
#!/bin/bash
|
|
|
|
IP_ADDR=$(ip addr show | grep "inet " | grep "eth0" | awk '{print $2}')
|
|
nmap -sP $IP_ADDR | grep ondemand_mpi_worker | awk -F "[()]" '{ for (i=2; i<NF; i+=2) print $i }' > /project/hosts
|
|
|
|
|