ksh fork last item in pipelein539 (4/18/2012 3:03:10 AM) comp.unix.shell According to some old posts here (searched via google groups), people say ksh does not fork for last command in pipeline. To clarify, these posts are referring to built-ins being the last command ... am I corr... Selva
how can EUID be different from UID?359 (4/15/2012 7:58:43 PM) comp.unix.shell How can a shell's EUID be different from it's UID? It has two variables with these names, wondering when they can be different? ... Selva
pipes and subshells226 (3/24/2012 6:43:05 AM) comp.unix.questions If B1 and B2 are shell builtins, and E1 and E2 are external executibles. B1 alone is run in the current shell B1 | B2 , each of B1 and B2 are run in subshells E1 | E2 , each of E1 and E2 are run in subshells,... Selva
bash: order of expansions, substitutions138 (3/22/2012 3:59:40 AM) comp.unix.shell Hi, Is there a comprehensive list of how all the expansions and tokenizations happens on bash command line? - tilde expansion - history expansion - brace expansion - globbing - $' ' ascii escape - command su... Selva
rational for PATH532 (3/4/2012 8:54:41 PM) comp.unix.shell Hi, Was wondering why "dir/dir/executable" works even if it's not in PATH because we've given the shell a relative path to the executable, but why "executable" is not taken as a relative path (that is, other c... Selva
memory usage of a process (linux)1182 (2/29/2012 11:30:43 PM) comp.unix.programmer Some questions: 1) What is difference between (assuming we convert all values to same units): a) /proc/PID/statm's totalpages b) /proc/PID/stat 's vsize c) /proc/PID/status's VmSize ? 2) Where in /proc can I... Selva
open() system call is part of glibc?991 (2/21/2012 3:31:33 AM) comp.unix.programmer This is from GNU C Lib website: Overview Any Unix-like operating system needs a C library: the library which defines the ``system calls'' and other basic facilities such as open, malloc, printf, exit... ...... Selva
Division with arrays?934 (2/1/2005 9:57:28 PM) comp.lang.c How I can make division of two numbers placed in arrays, example: short int a[] = {2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2}; short int b[] = {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0... mjs27(4)
is ++n equivalent to (n=n+1) ?1127 (2/4/2005 9:47:03 PM) comp.lang.c Hi, I've gotten into the habit of mentally converting big expressions to parse tress (started doing this after reading some c.l.c posts on parse trees). Can someone verify if the following assumptions are cor... kobu.selva(53)
Do input functions use fgetc inside them or read()625 (3/16/2005 1:42:00 AM) comp.lang.c Do the "larger" input functions like scanf, gets, fgets use fgetc to take input or an operating system call function like read() (I know it could be any "way", but I'm trying to find out how it's best to "think... kobu.selva(53)
simple question #4334 (2/5/2006 3:05:19 AM) comp.lang.c Is d(g+f) / dt = dg/dt + df/dt [Say g and f are 2 "lengths" that are changing] What is the proof of this? ... kobu.selva(53)
pipes and subshells226 (3/24/2012 6:43:05 AM) comp.unix.questions If B1 and B2 are shell builtins, and E1 and E2 are external executibles. B1 alone is run in the current shell B1 | B2 , each of B1 and B2 are run in subshells E1 | E2 , each of E1 and E2 are run in subshells,... kobu.selva(53)
ksh fork last item in pipelein539 (4/18/2012 3:03:10 AM) comp.unix.shell According to some old posts here (searched via google groups), people say ksh does not fork for last command in pipeline. To clarify, these posts are referring to built-ins being the last command ... am I corr... kobu.selva(53)