- 论坛徽章:
- 15
|
本帖最后由 rdcwayx 于 2012-09-05 11:45 编辑
再加上我自己的notes
1. 有很多种 shell, 你熟悉几种? 各个 shell 的 home page 在那里?
URL http://en.wikipedia.org/wiki/Shell_(computing) 列出绝大部分的shell,还包括 非unix些的shell , 也给出相应的的主页。
你熟悉几种, 这个回答看每个人了, 一般最常用的是ksh 和 bash
2. 为什么说 zsh 是目前为止功能最为强大的 shell.
这个提法应该是个非常过时的问题了,查了历史记录, 应该是源于一本书: From Bash to Z Shell: Conquering the Command Line (http://www.amazon.com/From-Bash- ... mmand/dp/1590593766)
one of the most powerful, versatile shells ever written.
另外,按照这个URL: http://en.wikipedia.org/wiki/Comparison_of_command_shells, 统计“yes" 出现最多的Unix shell,确实可以看到, zsh 支持的功能最多,所以就可以理解为最强大, 其次是ksh 和bash. 这个应该不出所料。
功能太过强大,可能易用性不够。 对我个人来说,我不会用zsh,最主要的一个原因是,有个很变态的同事用zsh.
30 zsh
27 ksh (ksh93t+)
27 bash (v4.0)
19 tcsh
19 ash
18 pdksh
17 Scsh
16 csh
15 POSIX shell[5]
12 Bourne shell
3. 为什么说 pdksh 功能较弱?
这个shell 现在应该没多少人用。主页在这里: http://www.cs.mun.ca/~michael/pdksh/ , 大概了解一下就可以了。
4. ksh88 与 ksh93 有何区别?
你自己在Google里输入 " ksh88 vs ksh93 " ,会得到很多回答。
这个是半官方文档: KSH-93 VS. KSH-88
http://www.opensource.apple.com/ ... ksh93/COMPATIBILITY
5. 为什么 shell 编程最好用 ksh?
兼容性好些。
The "Korn" shell, written by David Korn of AT&T Bell Labs (now AT&T Research). Written as a major upgrade to "sh" and backwards compatible with it, but has many internal commands for the most frequently used functions. It also incorporates many of the features from tcsh which enhance interactive use (command line history recall etc.).
6. 你的系统都有哪些 shell? 版本是多少?
略。
7. 你知道 POSIX 吗?最新版本是多少?和你的 shell 有什么关系?
GOOGLE IT,这个就不解释了。
8. /sbin/sh 和 /bin/sh 有何区别?
这个要看系统, 很多老系统, /sbin/sh 和 /bin/sh 的大小是不同的, 比如 Solaris 8下:- $ ls -l /bin/sh
- -r-xr-xr-x 4 root root 95328 Jul 17 2008 /bin/sh
- $ ls -l /sbin/sh
- -r-xr-xr-x 2 root root 308728 Jul 17 2008 /sbin/sh
复制代码 从ldd 命令结果可知, /sbin/sh 用的是静态库,也就是说库文件已经直接编译进可执行文件了, 所以文件比/bin/sh 要大。- $ ldd /sbin/sh
- ldd: /sbin/sh: file is not a dynamic executable or shared object
- $ ldd /bin/sh
- libgen.so.1 => /usr/lib/libgen.so.1
- libsecdb.so.1 => /usr/lib/libsecdb.so.1
- libnsl.so.1 => /usr/lib/libnsl.so.1
- libc.so.1 => /usr/lib/libc.so.1
- libcmd.so.1 => /usr/lib/libcmd.so.1
- libdl.so.1 => /usr/lib/libdl.so.1
- libmp.so.2 => /usr/lib/libmp.so.2
复制代码 而有些Unix系统,根本没有/sbin/sh.
如果说不同的话,就是静态库和动态库的不同。 上面的ldd 命令已经解释了很清楚。 在系统启动过程中, /sbin/sh 使用的多些, root的缺省shell, /etc/rc*.d, /etc/init.d 脚本都会用到/sbin/sh, 因为在启动过程中,如果需要调用的库文件被删除的话,系统可能都无法正常启动。 这时用/sbin/sh 就会减少这种风险。
9. 你分析过 1000 行以上的 shell 程序吗?
看过些10,20年前的超长代码,因为当时的命令限制,很多功能只能靠具体shell命令来实现, 也就造成代码很长,
现在看来, 很多程序写的长,可能是不够精炼。如果足够精炼而又很长的话, 常常是因为有大量的function定义,加上频繁的 if-else-then 判断调用function,以及加入大量的注释行。如果按照规范写得话,阅读起来还是清晰,如果写得不规范,就很烦人了。
代码写得长不代表什么。
10. 各种 shell 的变量名长度有何限制?
似乎是没有限制的,只要内存允许。 自己做了个超长的文件,也就是设了个1千6百万字节长的变量名。
awk '{print length}' xyz
16110770
eval `awk '{print $0 "=abc"}' xyz`
set
运行set 后,是可以看到这个变量的。
这个问题没有必要追究, 因为用超长变量名在shell里是根本不被建议的。
11. 各种 shell 的 array size 有何限制?
没有限制,只要内存允许。
12. FIFO 比 co-process 有什么优点?
http://www.ict.griffith.edu.au/a ... /co-processes.hints
http://www.ict.griffith.edu.au/a ... processes.example_1
http://www.ict.griffith.edu.au/a ... processes.example_2
3.2.5 Coprocesses
A coprocess is a shell command preceded by the coproc reserved word. A coprocess is executed asynchronously in a subshell, as if the command had been terminated with the ‘&’ control operator, with a two-way pipe established between the executing shell and the coprocess.
The format for a coprocess is:
coproc [NAME] command [redirections]
This creates a coprocess named NAME. If NAME is not supplied, the default name is COPROC. NAME must not be supplied if command is a simple command (see Simple Commands); otherwise, it is interpreted as the first word of the simple command.
When the coproc is executed, the shell creates an array variable (see Arrays) named NAME in the context of the executing shell. The standard output of command is connected via a pipe to a file descriptor in the executing shell, and that file descriptor is assigned to NAME[0]. The standard input of command is connected via a pipe to a file descriptor in the executing shell, and that file descriptor is assigned to NAME[1]. This pipe is established before any redirections specified by the command (see Redirections). The file descriptors can be utilized as arguments to shell commands and redirections using standard word expansions.
The process ID of the shell spawned to execute the coprocess is available as the value of the variable NAME_PID. The wait builtin command may be used to wait for the coprocess to terminate.
The return status of a coprocess is the exit status of command.
13. (..) 产生的 subshell 与调用另一个脚本产生的 subshell 有何不同?
14. shell 中的函数可以递归吗?设计时要注意什么?
15. 如何用 subshell 产生的多个值改变多个 shell 中的变量?
16. File pattern 与 regular expression 有什么不同?
17. shell 中含有大量文档.不想在每行之前用 # 注释. 有那两种方法可以实现?
18. 用 shell 程序安装配置一个二进制可执行软件.希望将被安装软件含在 shell 程序中形成一个
安装文件, 可以吗?
19. 可以在一个shell 程序里包含 ksh 及 perl 两种代码吗?
20. 如何保证 shell 程序只有单一 instance 运行? (有难度, 绝非一个 ps 命令可以搞定)
21. 当有同名的 alias, function, builtin command, external command 时,如何知道并控制其运行顺序?
22. 如何在自定义 function 中调用同名的 builtin command ?
23. 怎样运行各种 shell 时具有 login shell 的行为?
24. 为何 ksh, rksh, pfksh 都是同一个 hard link? 功能却不同?
25. 当 while read .. 这样的语句用于 pipe 右侧时,需注意什么?
26. 对于多个相连的 pipe,最后的返回码是 pipe 中那个命令的? 如何取得所有命令的返回码?
27. cmd >a 2>a 和 cmd >a 2>&1 为什么不同?
28. Stdin, Stderr 可以关闭吗? 有什么结果?
29. GNU tools 与其他 Unix 上的相比有什么特点? 为什么说不能过分依赖 GNU 扩展?
30. VI 及 VIM 对行长度及 file size 有什么限制?
31. 请写出对 field 1 (数字), field 3 (数字倒序), field 3 (ascii) 进行排序的完整语句.
32. 如何用 diff 及其他工具写一个版本控制系统?(要有 check in, check out, file lock .. 等功能) |
|