No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

9 líneas
256 B

#!/bin/bash
# find ip
IP_ADDR=$(ip addr show | grep "inet " | grep "eth0" | awk '{print $2}')
# find all clients connected to network
nmap -sP $IP_ADDR | grep ondemand_mpi_worker | awk -F "[()]" '{ for (i=2; i<NF; i+=2) print $i }' > /project/hosts