===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
jube-2.3.0/platform/moab/chainJobs.sh-15-then
jube-2.3.0/platform/moab/chainJobs.sh:16:    DEPEND_JOBID=`head -1 $LOCKFILE`
jube-2.3.0/platform/moab/chainJobs.sh:17:    JOBID=`msub -l depend=afterany:${DEPEND_JOBID} $SUBMITSCRIPT`
jube-2.3.0/platform/moab/chainJobs.sh-18-else
jube-2.3.0/platform/moab/chainJobs.sh:19:    JOBID=`msub $SUBMITSCRIPT`
jube-2.3.0/platform/moab/chainJobs.sh-20-fi
##############################################
jube-2.3.0/platform/slurm/chainJobs.sh-15-then
jube-2.3.0/platform/slurm/chainJobs.sh:16:    DEPEND_JOBID=`head -1 $LOCKFILE`
jube-2.3.0/platform/slurm/chainJobs.sh-17-    echo "sbatch --dependency=afterany:${DEPEND_JOBID} $SUBMITSCRIPT"
jube-2.3.0/platform/slurm/chainJobs.sh:18:    JOBID=`sbatch --dependency=afterany:${DEPEND_JOBID} $SUBMITSCRIPT`
jube-2.3.0/platform/slurm/chainJobs.sh-19-else
jube-2.3.0/platform/slurm/chainJobs.sh-20-    echo "sbatch $SUBMITSCRIPT"
jube-2.3.0/platform/slurm/chainJobs.sh:21:    JOBID=`sbatch $SUBMITSCRIPT`
jube-2.3.0/platform/slurm/chainJobs.sh-22-fi
##############################################
jube-2.3.0/platform/pbs/chainJobs.sh-15-then
jube-2.3.0/platform/pbs/chainJobs.sh:16:    DEPEND_JOBID=`head -1 $LOCKFILE`
jube-2.3.0/platform/pbs/chainJobs.sh:17:    JOBID=`qsub -W depend=afterany:${DEPEND_JOBID} $SUBMITSCRIPT`
jube-2.3.0/platform/pbs/chainJobs.sh-18-else
jube-2.3.0/platform/pbs/chainJobs.sh:19:    JOBID=`qsub $SUBMITSCRIPT`
jube-2.3.0/platform/pbs/chainJobs.sh-20-fi
##############################################
jube-2.3.0/README.md-36-
jube-2.3.0/README.md:37:You can install the files to your `$HOME/.local` directory by using:
jube-2.3.0/README.md-38-
##############################################
jube-2.3.0/README.md-44-
jube-2.3.0/README.md:45:`$HOME/.local/bin` must be inside your `$PATH` environment variable to use JUBE in an easy way.
jube-2.3.0/README.md-46-
##############################################
jube-2.3.0/README.md-52-
jube-2.3.0/README.md:53:You might be asked during the installation to add your path (and some subfolders) to the `$PYTHONPATH` environment variable (this should be stored in your profile settings):
jube-2.3.0/README.md-54-
##############################################
jube-2.3.0/README.md-59-
jube-2.3.0/README.md:60:In addition it is useful to also set the `$PATH` variable again.
jube-2.3.0/README.md-61-
##############################################
jube-2.3.0/bin/jube-autorun-79-# extract benchmark dir
jube-2.3.0/bin/jube-autorun:80:BENCHMARK_DIR=`egrep -o 'handle: .+$' jube_job_output.txt | cut -c9-`
jube-2.3.0/bin/jube-autorun-81-
##############################################
jube-2.3.0/bin/jube-autorun-88-# continue benchmark execution
jube-2.3.0/bin/jube-autorun:89:while [ `jube status $BENCHMARK_DIR` = "RUNNING" ]
jube-2.3.0/bin/jube-autorun-90-do