#!/bin/bash # # (c) 2000 Sun Microsystems, Inc. # # All commands use the sentinel #$ # # --------------------------- # User needs to customize the following items # enclosed by <> # # Job name #$ -N My_name # # Job shell #$ -S /bin/bash # # Join stdin/stderr ? answer y or n #$ -j y # # Output file #$ -o My_name.output # # --------------------------- # # Execute the job from the current working directory # #$ -cwd # # Mail list #$ -M my_user_name@tdb.uu.se # # Mails can be sent at (b) beginning, (e) end and # at (s) suspension # # Mail settings #$ -m bes # # --------------------------- # # Choose your queue(s) # #$ -q simba.q,duma.q # #-> Use the following priorities according to the expected #-> execution time of your application. # # Execution time Priority # ----------------------------- # # 0 - 1 h 0 # 1 - 10 h 1 # 10 - 48 h 2 # 48+ h 3 # # Job priority # #$ -p 0 # # --------------------------- # # Put compilations here # # --------------------------- # # Execution # # --------------------------- # # User needs to customize the following items # enclosed by <> #