Searched refs:script (Results 76 - 100 of 148) sorted by relevance

123456

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/usdt/
H A Dtst.noreap.ksh71 script() function
110 script 2>&1 | tee test.out
H A Dtst.noreapring.ksh71 script() function
105 script 2>&1 | tee test.out
H A Dtst.reap.ksh71 script() function
102 script 2>&1 | tee test.out
H A Dtst.static.ksh81 script() function
91 script
H A Dtst.static2.ksh91 script() function
101 script
H A Dtst.entryreturn.ksh88 script() function
111 script | cut -c5-
/illumos-gate/usr/src/lib/libshell/common/tests/
H A Dbasic.sh118 cat > $tmp/script <<- !
122 chmod 755 $tmp/script
123 if [[ $($tmp/script) != "$tmp/script" ]]
124 then err_exit '$0 not correct for #! script'
165 then err_exit "script not working"
168 then err_exit "script | cat not working"
186 cat > $tmp/script <<\!
194 chmod +x $tmp/script
195 case $( (print) | $tmp/script;
[all...]
H A Dheredoc.sh232 script=$f
245 } > $script
246 chmod +x $script
247 [[ $($SHELL $script) == hello ]] 2> /dev/null || err_exit 'heredoc embeded in command substitution fails at buffer boundary'
H A Dfunctions.sh139 cat > $tmp/script <<-\!
142 chmod +x $tmp/script
145 $tmp/script "$@"
150 cat > $tmp/script <<-\!
158 if ! $tmp/script
161 if ! $SHELL -c $tmp/script
164 $SHELL -c "trap 'rm $tmp/script' EXIT"
165 if [[ -f $tmp/script ]]
168 cat > $tmp/script <<- \EOF
177 chmod +x $tmp/script
[all...]
H A Darith.sh373 cat > $tmp/script <<-\!
419 chmod +x $tmp/script
420 [[ $($tmp/script 1) != '( bar=2 baz=3 foo=1 )' ]] 2>/dev/null && err_exit 'compound var arithmetic failed'
421 [[ $($tmp/script 2) != '( faz=0 )' ]] 2>/dev/null && err_exit 'compound var arithmetic failed'
422 [[ $($tmp/script 3) != '( foz=777 )' ]] 2>/dev/null && err_exit 'compound var arithmetic failed'
423 [[ $($tmp/script 4) != '( foz=777 )' ]] 2>/dev/null && err_exit 'compound var arithmetic failed'
424 [[ $($tmp/script 5) != '( fuz=777 )' ]] 2>/dev/null && err_exit 'compound var arithmetic failed'
425 [[ $($tmp/script 6) != '0' ]] 2>/dev/null && err_exit 'compound var arithmetic failed'
426 [[ $($tmp/script 7) != '0' ]] 2>/dev/null && err_exit 'compound var arithmetic failed'
H A Dvariables.sh438 cat > $tmp/script <<-\!
455 chmod +x $tmp/script
456 . $tmp/script 1
457 [[ $file == $tmp/script ]] || err_exit ".sh.file not working for dot scripts"
458 [[ $($SHELL $tmp/script) == $tmp/script ]] || err_exit ".sh.file not working for scripts"
459 [[ $(posixfun .sh.file) == $tmp/script ]] || err_exit ".sh.file not working for posix functions"
460 [[ $(fun .sh.file) == $tmp/script ]] || err_exit ".sh.file not working for functions"
487 print 'print ${VAR}' > $tmp/script
489 VAR=new $tmp/script >
[all...]
H A Dio.sh48 [[ $a == foo ]] || err_exit "bad file descriptor $i in comsub script"
119 then err_exit "picked up file descriptor zero for opening script file"
140 cat >| script <<-\!
146 chmod +x script
147 [[ $( $SHELL ./script) == $'hello\nworld' ]] || err_exit 'closing 3 & 4 causes script to fail'
177 script=$tmp/2
178 trap "rm -f \$script" EXIT
179 exec 9> \$script
189 chmod +x \$script
[all...]
/illumos-gate/usr/src/tools/cscope-fast/
H A Dcommand.c491 FILE *script; /* shell script file */ local
498 if ((script = fopen(temp2, "w")) == NULL) {
605 (void) fprintf(script, "ed - <<\\!\nH\n");
628 (void) fprintf(script,
633 (void) fprintf(script, "e %s\n", oldfile);
636 (void) fprintf(script,
640 (void) putc('\\', script);
642 (void) putc(*s, script);
644 (void) putc('/', script); /* t
[all...]
/illumos-gate/usr/src/lib/libnsl/saf/
H A Ddoconfig.c60 * doconfig - the configuration script interpreter, if all is ok,
66 * script - name of the configuration script
72 doconfig(int fd, char *script, long rflag) argument
76 FILE *fp; /* file pointer for config script */
81 /* if the script does not exist, then there is nothing to do */
82 if (stat(script, &statbuf) < 0)
85 fp = fopen(script, "rF");
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/mib/
H A Dtst.tcp.ksh29 # This script tests that several of the the mib:::tcp* probes fire and fire
47 script() function
126 script &
130 # Sleep while the above script fires into life. To guard against dtrace dying
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/pid/
H A Dtst.provregex2.ksh120 script() { function
124 script
/illumos-gate/usr/src/cmd/svr4pkg/pkginstall/
H A Dpkginstall.h71 extern int reqexec __P((int update, char *script, int non_abi_scripts,
73 extern int chkexec __P((int update, char *script));
/illumos-gate/usr/src/cmd/svr4pkg/installf/
H A Dmain.c116 char *script; variable
181 script = getenv("PKG_PROC_SCRIPT");
183 if (ulim && script) {
483 if (ulim && script) {
485 set_ulimit(script, gettext(ERR_R_FAIL));
487 set_ulimit(script, gettext(ERR_I_FAIL));
/illumos-gate/usr/src/common/ficl/emu/
H A Dloader_emu.c1666 struct includeline *script, *se, *sp; local
1683 * Read the script into memory.
1685 script = se = NULL;
1691 /* Allocate script line structure and copy line, flags */
1703 while (script != NULL) {
1704 se = script;
1705 script = script->next;
1717 if (script == NULL) {
1718 script
[all...]
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dconf.sh26 # this script generates these files from the table file in the first arg
190 script=
199 eval script='$'script_$1
203 "sh{") script="# $name" ;;
204 *) script= ;;
213 script=$script$nl$line
278 eval CONF_script_${key}='$'script
297 eval script=\"'$'CONF_script_$key\"
300 printf "%29s %35s %8s %2s %1d %5s %s$nl" "$name" "$key" "$standard" "$call" "$section" "$flags" "$define${values:+$sp=$values}${headers:+$sp$headers$nl}${script
[all...]
/illumos-gate/usr/src/cmd/itadm/
H A Ditadm.c210 list_target(char *tgt, boolean_t verbose, boolean_t script);
216 list_tpg(char *tpg, boolean_t verbose, boolean_t script);
225 list_initiator(char *ini, boolean_t verbose, boolean_t script);
234 list_defaults(boolean_t script);
257 boolean_t script = B_FALSE; local
386 script = B_TRUE;
580 ret = list_target(objp, verbose, script);
589 ret = list_tpg(objp, verbose, script);
598 ret = list_initiator(objp, verbose, script);
607 ret = list_defaults(script);
810 list_target(char *tgt, boolean_t verbose, boolean_t script) argument
1425 list_tpg(char *tpg, boolean_t verbose, boolean_t script) argument
1721 list_initiator(char *ini, boolean_t verbose, boolean_t script) argument
1929 list_defaults(boolean_t script) argument
[all...]
/illumos-gate/usr/src/cmd/sgs/tools/
H A Dlibconv_mk_report_bufsize.pl31 use vars qw($script $limit $i);
33 $script = "libconv_mk_report_bufsize";
36 # This perl script is used by the sgs/libconv makefile to generate an
43 # which is found further down in this script.
48 die "usage: $script toplimit\n";
51 die "$script: Unable to create report_bufsize.h";
56 * This file was generated by $script,
/illumos-gate/usr/src/tools/scripts/
H A Dwdiff.pl134 <script type="text/javascript">
186 </script>
200 <script type='text/javascript'>
203 </script>
340 <script type="text/javascript">
371 </script>
/illumos-gate/usr/src/grub/grub-0.97/
H A Dcompile25 # configuration script generated by Autoconf, you may include it under
46 right script to run: please start by reading the file `INSTALL'.
136 # mode: shell-script
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dcmdline.c181 /* Run an entry from the script SCRIPT. HEAP is used for the
185 run_script (char *script, char *heap) argument
188 char *cur_entry = script;

Completed in 116 milliseconds

123456