選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

9 行
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