Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You'll probably want to quote the required fields on the last line. As right now it'll be a blank instead of "". </p> <p>eg</p> <pre><code>java "$java_cp" "$java_cmd" "$mode" "$db_user" "$db_pwd" "$conn_string" "$work_dir" "$output_dir" </code></pre> <p>edited to atleast run java on mysystem:</p> <pre><code>################################################# #!/bin/sh ################################################## ## USAGE ################################################## if [ $# -ne 1 ]; then echo "1&gt;Use Extractor: $0 &lt;MODO DE OPERACAO&gt;;" echo "2&gt;Use Extractor: $0 &lt;MODO DE OPERACAO&gt; &lt;DATA INICIAL&gt; &lt;DATA FINAL&gt;" exit 127 else if [ $1 -lt 0 -o $1 -gt 1 ]; then echo "1&gt;O Parametro &lt;MODO DE OPERACAO&gt; deve ser 0 (Cartorios) ou 1 (Transacoes);" exit 127 fi fi ################################################## ## VARS ################################################## ########################################## ## AUX ########################################## java_cmd="" java_cmd_emergencial="" java_cp="" ########################################## ## JAR ########################################## db_user="" db_pwd="" conn_string="" work_dir="" output_dir="" ################################################## ## PARAMETROS ################################################## mode=$1 data_ini="" data_fim="" if [ $# -eq 3 ]; then data_ini=$2 data_fim=$3 fi ################################################## ## CHAMADA DO JAR ################################################## java $java_cp $java_cmd $mode $db_user $db_pwd $conn_string $work_dir $output_dir </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload