vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| seconway@mts.net (Sean) writes: > I found these three directories for the Bourne shell on an HPUX 11.0 > sever. I was aware of different shells (korn,bash,c-shell). I was not > aware of different shells within the same group. I am assuming since > the file size is different one contains more than the other. > Does anyone have any insight? > -r-xr-xr-x 1 bin bin 425984 Apr 9 2002 /sbin/sh > -r-xr-xr-x 2 bin bin 217088 Apr 9 2002 /bin/sh > -r-xr-xr-x 2 bin bin 217088 Apr 9 2002 /usr/bin/sh - /bin/sh and /usr/bin/sh have the same size because they are the same binary: /bin is a symbolic link to /usr/bin, - /sbin/sh is bigger than /usr/bin/sh because it's compiled statically. -- Dido |