| /onnv/onnv-gate/usr/src/lib/libshell/common/ |
| llib-lshell | 32 #include <shell.h>
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ |
| dotsh.pl | 14 # This routine takes a shell script and 'dots' it into the current perl 23 # 'ShellScript' is the full name of the shell script to be dotted 25 # 'DependentVariable(s)' is an optional list of shell variables in the 27 # dependent upon. These variables MUST be defined using shell syntax. 36 local($tmp,$key,$shell,$command,$args,$vars) = ''; 46 $shell = "$1 -c" if ($_ =~ /^\#\!\s*(\S+(\/sh|\/ksh|\/zsh|\/csh))\s*$/); 48 if (!$shell) { 49 if ($ENV{'SHELL'} =~ /\/sh$|\/ksh$|\/zsh$|\/bash$|\/csh$/) { 50 $shell = "$ENV{'SHELL'} -c" [all...] |
| /onnv/onnv-gate/usr/src/cmd/runat/ |
| runat.c | 34 * when command is not specified an interactive shell is started 59 char *shell; local 92 shell = getenv("SHELL"); 93 if (shell == NULL) { 96 "runat: shell not found, using /bin/sh\n")); 97 shell = "/bin/sh"; 100 (void) execl(shell, shell, NULL); 102 gettext("runat: Failed to exec %s: %s\n"), shell, [all...] |
| /onnv/onnv-gate/usr/src/cmd/tip/ |
| cmdtab.c | 16 extern void shell(int), getfl(int), tip_sendfile(int), chdirectory(int); 22 { '!', NORM, "shell", shell },
|
| /onnv/onnv-gate/usr/src/lib/libshell/common/sh/ |
| suid_exec.c | 22 * This is a program to execute 'execute only' and suid/sgid shell scripts. 35 * user and group id correctly, and then exec the shell. 89 static char *shell; variable 235 /* only use SHELL if file is in trusted directory and ends in sh */ 236 shell = getenv("SHELL"); 237 if(shell == 0 || !endsh(shell) || ( 238 !in_dir("/bin",shell) && 239 !in_dir("/usr/bin",shell) & [all...] |
| pmain.c | 22 #include <shell.h>
|
| /onnv/onnv-gate/usr/src/cmd/refer/ |
| shell.c | 23 shell(int n, int (*comp)(), int (*exch)()) function
|
| Makefile | 43 refer5.o refer6.o refer7.o refer8.o shell.o sortbib.o \ 78 hunt7.o glue5.o refer3.o shell.o \ 84 glue5.o refer0.o shell.o 125 hunt7.c glue5.c refer3.c shell.c \ 131 glue5.c refer0.c shell.c $(LDLIBS)
|
| /onnv/onnv-gate/usr/src/lib/libshell/common/data/ |
| keywords.c | 22 #include <shell.h> 27 * table of reserved words in shell language
|
| variables.c | 25 #include <shell.h> 32 * This is the list of built-in shell variables and default values 46 "SHELL", NV_NOFREE, "/bin/" SH_STD,
|
| /onnv/onnv-gate/usr/src/lib/libpp/common/ |
| gentab.sh | 36 A1) shell=ksh 40 *) shell=bsh 68 do case $shell in 98 1:?*) case $shell in 179 *) case $shell in 207 case $shell in 219 1:?*) case $shell in
|
| /onnv/onnv-gate/usr/src/grub/grub-0.97/util/ |
| grub-md5-crypt.in | 39 --grub-shell=FILE use FILE as the grub shell 51 --grub-shell=*) 52 grub_shell=`echo "$option" | sed 's/--grub-shell=//'` 90 # Run the grub shell.
|
| /onnv/onnv-gate/usr/src/cmd/vi/port/ |
| ex_data.c | 73 unsigned char shell[ONMSZ] = { variable 116 (unsigned char *)"shell", (unsigned char *)"sh", STRING, 0, 0, shell,
|
| /onnv/onnv-gate/usr/src/lib/libast/common/string/ |
| fmtesc.c | 54 int shell; local 64 shell = 0; 70 shell = 1; 166 if (singlequote || shell) 172 if (shell) 191 else if (!spaced && !escaped && (isspace(c) || ((flags & FMT_SHELL) || shell) && (strchr("\";~&|()<>[]*?", c) || c == '#' && (b == f || isspace(*(b - 1)))))) 199 buf += shell + !spaced;
|
| /onnv/onnv-gate/usr/src/cmd/newgrp/ |
| newgrp.c | 55 #define SHELL "/usr/bin/sh" 65 char NS[] = "newgrp: You have no shell"; 87 char *shell, *dir, *name; local 145 if ((shell = getenv("SHELL")) != NULL) { 146 p->pw_shell = shell; 148 p->pw_shell = SHELL; 176 if ((shell = (char *)malloc(len)) == NULL) 178 (void) snprintf(shell, len, "-%s", p->pw_shell); 179 simple = strrchr(shell, '/'); [all...] |
| /onnv/onnv-gate/usr/src/cmd/rpcsvc/nis/rpc.nispasswdd/ |
| npd_ypfwd.c | 56 * shell old_shell old_shell original shell 65 char *shell) /* (unchanged) login shell */ 86 pwstruct.pw_shell = shell; /* unchanged login shell */
|
| /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/ |
| execvp.c | 45 static char *shell = "/bin/sh"; variable 89 (void) execv(shell, newargs);
|
| /onnv/onnv-gate/usr/src/lib/libbsm/common/ |
| audit_rexd.c | 151 audit_rexd_fail(msg, hostname, user, uid, gid, shell, cmd) 157 char *shell; /* login shell of user requesting service */ 231 audit_cmd[0] = shell; 270 audit_rexd_success(hostname, user, uid, gid, shell, cmd) 275 char *shell; /* login shell of user requesting service */ 308 if (shell == NULL) 309 shell = empty; 349 audit_cmd[0] = shell; [all...] |
| /onnv/onnv-gate/usr/src/cmd/script/ |
| script.c | 48 char *shell; variable 78 shell = getenv("SHELL"); 79 if (shell == NULL) 80 shell = "/bin/sh"; 214 execl(shell, shell, "-i", (char *)0); 215 perror(shell);
|
| /onnv/onnv-gate/usr/src/lib/libshell/ |
| Makefile | 27 SHELL=/usr/bin/ksh93 50 shell.h
|
| /onnv/onnv-gate/usr/src/cmd/cron/ |
| cron.h | 83 #define SHELL "/usr/bin/sh" /* shell to execute */ 85 #define ENV_SHELL "SHELL=" 101 extern int isvalid_shell(const char *shell);
|
| /onnv/onnv-gate/usr/src/cmd/oamuser/user/ |
| usermod.c | 50 * | -s shell | -c comment | -l new_logname] 63 * shell - a program to be used as a shell 93 static char *shell = NULL; /* shell from command line */ variable 223 shell = optarg; 492 if (shell) { 493 if (REL_PATH(shell)) { 494 errmsg(M_RELPATH, shell); 497 if (strcmp(pstruct->pw_shell, shell) == 0) [all...] |
| useradd.c | 50 * | -s shell | -c comment | -k skel_dir | -b base_dir] ] 56 * -s shell | -k skel_dir ] 66 * shell - a program to be used as a shell 110 static char *shell = NULL; /* shell from command line */ variable 124 SHELL 211 shell = optarg; 352 if (shell != NULL) { 353 valid_input(SHELL, shell) [all...] |
| /onnv/onnv-gate/usr/src/tools/cscope-fast/ |
| mypopen.c | 40 #include "global.h" /* pid_t, SIGTYPE, shell, and basename() */ 77 (void) execlp(shell, basename(shell), "-c", cmd, 0);
|
| /onnv/onnv-gate/usr/src/lib/nsswitch/nisplus/common/ |
| getpwnam.c | 80 char *dir, *shell, *endnum; local 135 /* shell: user's login shell */ 136 __NISPLUS_GETCOL_OR_EMPTY(ecol, PW_NDX_SHELL, shelllen, shell); 154 name, uid, gid, gecos, dir, shell);
|