testRun #1

  • //
  • guest/
  • kosinski/
  • testCompile/
  • testRun
  • View
  • Commits
  • Open Download .zip Download (190 B)
#!/bin/sh

cd /home/testbuild

ps -ef | grep testCompile | grep -v grep >runCheck

RUNCHECK="./runCheck"
if [ -s "$RUNCHECK" ];
 then
  echo "already running"
  exit;
 else
  testCompile
fi
# Change User Description Committed
#1 19006 kosinski initial put of testCompile project.