view scripts/test.sh @ 2:ddf19a51f91f

cleanup
author kono
date Thu, 11 Jan 2018 16:08:48 +0900 (2018-01-11)
parents test.sh@b3df5f0ce4fb
children
line wrap: on
line source
#!/bin/sh
#PBS -q jungle
#PBS -N ExampleJob
#PBS -l nodes=16,walltime=00:00:30
for serv in `cat $PBS_NODEFILE`
do
  ssh $serv 'hostname;pwd' & 
done
wait