Searched refs:prog (Results 1 – 3 of 3) sorted by relevance
21 prog="$0"22 while [ -h "${prog}" ]; do23 newProg=`/bin/ls -ld "${prog}"`26 prog="${newProg}"28 progdir=`dirname "${prog}"`29 prog="${progdir}/${newProg}"33 progdir=`dirname "${prog}"`
188 public Process exec(String prog) throws java.io.IOException { in exec() argument189 return exec(prog, null, null); in exec()207 public Process exec(String prog, String[] envp) throws java.io.IOException { in exec() argument208 return exec(prog, envp, null); in exec()229 public Process exec(String prog, String[] envp, File directory) throws java.io.IOException { in exec() argument231 if (prog == null) { in exec()233 } else if (prog.isEmpty()) { in exec()238 StringTokenizer tokenizer = new StringTokenizer(prog); in exec()