Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Use zsh to emulate ksh' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Use zsh to emulate ksh
Authored by: wgscott on Jun 10, '03 11:42:05AM

This is odd:

% ls -i1 /bin/*sh*
2609239 /bin/bash*
2609265 /bin/csh*
2609234 /bin/ksh*
2609252 /bin/sh*
2609250 /bin/tcsh*
2609234 /bin/zsh*
2609235 /bin/zsh-4.0.4*

BUT they are the same size. So instead of hard linking, I guess they copied them?

% ls -lF /bin/*sh*
-rwxr-xr-x 1 root wheel 540884 Mar 22 19:29 /bin/bash*
-r-xr-xr-x 1 root wheel 315136 Mar 22 19:29 /bin/csh*
-rwxr-xr-x 2 root wheel 828780 Mar 22 19:29 /bin/ksh*
-r-xr-xr-x 1 root wheel 540884 Mar 22 19:29 /bin/sh*
-r-xr-xr-x 1 root wheel 315136 Mar 22 19:29 /bin/tcsh*
-rwxr-xr-x 2 root wheel 828780 Mar 22 19:29 /bin/zsh*
-rwxr-xr-x 1 root wheel 828780 Mar 22 19:29 /bin/zsh-4.0.4*
%




[ Reply to This | # ]