#!/bin/bash
#

#
# Use nmap to tell us if each PC is up and running. 
# -sP: Ping Scan - go no further than determining if host is online
#

#for i in `cat pcs`
#do
#    nmap -sP $i
#done

# hard-coded

nmap -sP pc1 pc2 pc3 pc4 pc5 pc6 pc7 pc8 pc9 pc10 

