免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: lightspeed
打印 上一主题 下一主题

[学习共享] [ SHELL 综合水平测试 ] [复制链接]

论坛徽章:
3
天蝎座
日期:2013-12-30 15:59:06天蝎座
日期:2014-02-27 11:10:40巨蟹座
日期:2014-04-16 10:19:11
111 [报告]
发表于 2012-05-23 22:25 |只看该作者
第一题我知道:zsh: The last shell you’ll ever need! Z是最后一个字母,所以它是终极Shell。(也是拼音终极Z缩写)

论坛徽章:
0
112 [报告]
发表于 2012-07-18 16:54 |只看该作者
当有同名的 alias, function, builtin command, external command 时,如何知道并控制其运行顺序.现在对这个在纠结呢。求高手

论坛徽章:
15
2015年辞旧岁徽章
日期:2015-03-03 16:54:15双鱼座
日期:2015-01-15 17:29:44午马
日期:2015-01-06 17:06:51子鼠
日期:2014-11-24 10:11:13寅虎
日期:2014-08-18 07:10:55酉鸡
日期:2014-04-02 12:24:51双子座
日期:2014-04-02 12:19:44天秤座
日期:2014-03-17 11:43:36亥猪
日期:2014-03-13 08:13:51未羊
日期:2014-03-11 12:42:03白羊座
日期:2013-11-20 10:15:18CU大牛徽章
日期:2013-04-17 11:48:45
113 [报告]
发表于 2012-08-27 10:42 |只看该作者
本帖最后由 rdcwayx 于 2012-09-05 11:40 编辑

查到个几乎全的。

http://www.okpython.com/thread-1691-1-1.html

[ SHELL 水平测试 ][ OVERVIEW 篇 ]
1. 有很多种 shell, 你熟悉几种? 各个 shell 的 home page 在那里?
请参考:
http://cbbrowne.com/info/unixshells.html 有详细的介绍。
http://en.wikipedia.org/wiki/Shell_%28computing%29
UNIX shells
Bourne shell (sh)
Almquist shell (ash)
Debian Almquist shell (dash)
Bourne-Again shell (bash)
Friendly interactive shell (fish)
Korn shell (ksh)
C shell (csh)  http://netlab.cse.yzu.edu.tw/~statue/freebsd/docs/csh/       http://www.grymoire.com/Unix/CshTop10.txt
TENEX C shell (tcsh)
Es shell (es)
esh (Unix) Easy Shell
rc shell (rc) - shell for Plan 9 and Unix
runscript The initial shell interpreter used to process startup scripts in Gentoo
scsh (Scheme Shell)
Stand-alone Shell (sash)
Z shell (zsh)
http://en.wikipedia.org/wiki/Comparison_of_computer_shells
http://baike.baidu.com/view/849.htm
http://www.chinaunix.net/jh/24/726796.html
http://bbs.chinaunix.net/viewthread.php?tid=442351
http://www.chinaunix.net/jh/24/index.html

2. 为什么说 zsh 是目前为止功能最为强大的 shell.
请参考:
http://en.wikipedia.org/wiki/Z_shell
http://www.zsh.org/

3. 为什么说 pdksh 功能较弱?
请参考:
http://www.cs.mun.ca/~michael/pdksh/

4. ksh88 与 ksh93 有何区别?
请参考:
http://en.wikipedia.org/wiki/Korn_shell
http://www.kornshell.com/

ksh88 http://www.cs.princeton.edu/~jlk/kornshell/doc/man88.html
ksh93 http://www.research.att.com/~gsf/man/man1/ksh.html

5. 为什么 shell 编程最好用 ksh?
它完全向上兼容 Bourne shell 并包含了 C shell 的很多特性。

6. 你的系统都有哪些 shell? 版本是多少?
(1)Bourne Shell是AT&T Bell实验室的 Steven Bourne为AT&T的Unix开发的,它是Unix的默认Shell,也是其它Shell的开发基础。Bourne Shell在编程方面相当优秀,但在处理与用户的交互方面不如其它几种Shell。  
(2)C Shell是加州伯克利大学的Bill Joy为BSD Unix开发的,与sh不同,它的语法与C语言很相似。它提供了Bourne Shell所不能处理的用户交互特征,如命令补全、命令别名、历史命令替换等。但是,C Shell与BourneShell并不兼容。  
(3)Korn Shell是AT&T Bell实验室的David Korn开发的,它集合了C Shell和Bourne Shell的优点,并且与Bourne Shell向下完全兼容。Korn Shell的效率很高,其命令交互界面和编程交互界面都很好。  
(4)Bourne Again Shell (即bash)是自由软件基金会(GNU)开发的一个Shell,它是Linux系统中一个默认的Shell。Bash不但与Bourne Shell兼容,还继承了C Shell、Korn Shell等优点。

7. 你知道 POSIX 吗?最新版本是多少?和你的 shell 有什么关系?
POSIX是IEEE为要在各种UNIX操作系统上运行的软件而定义API的一系列互相关联的标准的总称,其正式称呼为IEEE 1003
,而国际标准名称为ISO/IEC 9945。此标准源于一个大约开始于1985年的项目。POSIX这个名称是由Richard Stallman应
IEEE的要求而提议的一个易于记忆的名称。它基本上是Portable Operating System Interface(可移植操作系统界面)的
缩写,而X则表明其对Unix API的传承。
Linux基本上逐步实现了POSIX兼容,但并没有参加正式的POSIX认证。
微软的Windows NT至少部分实现了POSIX兼容。

POSIX在源代码级别上定义了一组最小的Unix(类Unix)操作系统接口。
http://en.wikipedia.org/wiki/POSIX
http://docs.hp.com/en/B2355-90046/ch15s03.html

8. /sbin/sh 和 /bin/sh 有何区别?
/sbin/sh and /usr/bin/sh shells 都是 Bourne shells.  
/sbin/sh    is statically linked
/usr/bin/sh is dynamically linked.
/bin/sh     /bin目录是到/usr/bin的链接
http://blog.chinaunix.net/u/12442/showart_270453.html

9. 你分析过 1000 行以上的 shell 程序吗?


10. 各种 shell 的变量名长度有何限制?
请参考:
http://en.wikipedia.org/wiki/Comparison_of_computer_shells

11. 各种 shell 的 array size 有何限制?
请参考:
http://en.wikipedia.org/wiki/Comparison_of_computer_shells
12. FIFO 比 co-process 有什么优点?
FIFO is an acronym for First In, First Out
http://en.wikipedia.org/wiki/FIFO

It copys one specified file to multiple "unique"(filter those different pathnames which in fact point to the same
physical path) paths with parallelism in bash. In contrast to sequential copy processes, it performs well under
multiprocessor systems.
The efficiency of Co-process is normally determined by three factors:
1.Whether CPU bound or not
2.Whether scientific data processing or not
3.Whether I/O or not

http://www.unix.com/shell-progra ... rocess-example.html

13. (..) 产生的 subshell 与调用另一个脚本产生的 subshell 有何不同?
执行shell script与subshell
两种方法:
唤起新shell再执行shell scripts
在目前shell执行shell scripts
唤起另一个shell来执行的scripts在scripts档头最前面前要加
     #! /bin/sh
第一种方法是在shell script 文字档前指出shell scripts解读的程式在那(也就是 我们的shell)然后把文字档的执行权限打开,照一般执行可执行档方式执行或者叫 一个shell来解释文字档test.sh。
     $ test.sh
     $ /bin/sh test.sh
     $ ( . test.sh; )
     $ exec test.sh

第二种方法是用命令”.”或者source执行。
     $ . test.sh
     $ source test.sh
     $ { test.sh; }
     $ eval ‘. test.sh’

差别在於一些设定只有在这个shell下的才算数,而唤起另一个shell就是另一个 不相干的世界, 也就是用第一种方法执行的script中变数的设定,不会影响到原来的shell变数。 这个相当重要。ksh没有source这个命令,所以最好不要用source。 中括号( )表示用另一个subshell大括号,{ }表示用目前shell。例如
     $ ( VAR=’testvar’; )
     $ echo $VAR

     $ { VAR=’testvar’; }
     $ echo $VAR
     testvar

只有{ }内的VAR中的值被设定。其中用 . 的方法要很小心, 不要在script裡面用
     $ . test.sh arg1 arg2

因為arg1 arg2会继承呼叫这个script的arg1 arg2来,用 . 的方式最好是要执行 的script只是一团script library不带参数。 另外如果 . test.sh执行,test.sh离开时,呼叫. test.sh的shell也跟著离开。
http://www.study-area.org/cyril/scripts/scripts/node6.html
http://www.chinaunix.net/jh/24/742295.html

shell何时在子shell中执行命令?
A: 在此我们主要讨论Bourne shell及其兼容shell。在许多情况下shell会在子shell中执行命令:
1.(…)结构
小括号内的命令会在一个子shell环境中执行,命令执行的结果不会影响当前的shell环境。需要注意是此时变量$$会显示当前shell的进程id,而不是子shell的进程id。
参考:
{…;}结构中的命令在当前shell中执行,(内部)命令执行的结果会影响当前的shell环境。

14. shell 中的函数可以递归吗?设计时要注意什么?
Bash 中的递归函数
http://www.ibm.com/developerwork ... ashrecur/index.html

15. 如何用 subshell 产生的多个值改变多个 shell 中的变量?
怎样把子shell中的变量传回父shell?如(echo "$a") | read b不能工作,如何找到一个替代方案?下面给出一些可能的方案:
a.使用临时文件

#in subshell
a=100
echo "$a">tmpfile

#in parent
read b
b.使用命名管道
mkfifo pipef
(…
echo "$a" > pipef
…)
read b
c.使用coprocess(ksh)
( echo "$a" |&)
read -p b

d.使用命令替换
b=`echo "$a"`

e.使用eval命令
eval `echo "b=$a"`

f.使用here document
read b <`echo "$a"`
END

g.使用here string(bash/pdksh)
read b <<<`echo "$a"`



16. File pattern 与 regular expression 有什么不同?

17. shell 中含有大量文档.不想在每行之前用 # 注释.有那两种方法可以实现?
方法一:
:<<BLOCK
shell
BLOCK
方法二:

if then fi  结构来屏蔽

27. cmd  >a  2>a 和 cmd  >a  2>&1 为什么不同?
cmd >a  2>a
undefined
把文件描述符2重定向到a,即把错误输出存到file中

cmd  >a  2>&1
undefined
把标准错误重定向到标准输出,再重定向到a,即stderr和stdout都被输出到file中

以下题目暂无答案

论坛徽章:
15
2015年辞旧岁徽章
日期:2015-03-03 16:54:15双鱼座
日期:2015-01-15 17:29:44午马
日期:2015-01-06 17:06:51子鼠
日期:2014-11-24 10:11:13寅虎
日期:2014-08-18 07:10:55酉鸡
日期:2014-04-02 12:24:51双子座
日期:2014-04-02 12:19:44天秤座
日期:2014-03-17 11:43:36亥猪
日期:2014-03-13 08:13:51未羊
日期:2014-03-11 12:42:03白羊座
日期:2013-11-20 10:15:18CU大牛徽章
日期:2013-04-17 11:48:45
114 [报告]
发表于 2012-08-27 10:59 |只看该作者
本帖最后由 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下:
  1. $ ls -l /bin/sh
  2. -r-xr-xr-x   4 root     root       95328 Jul 17  2008 /bin/sh

  3. $ ls -l /sbin/sh
  4. -r-xr-xr-x   2 root     root      308728 Jul 17  2008 /sbin/sh
复制代码
从ldd 命令结果可知, /sbin/sh 用的是静态库,也就是说库文件已经直接编译进可执行文件了, 所以文件比/bin/sh 要大。
  1. $ ldd /sbin/sh
  2. ldd: /sbin/sh: file is not a dynamic executable or shared object

  3. $ ldd /bin/sh
  4.         libgen.so.1 =>   /usr/lib/libgen.so.1
  5.         libsecdb.so.1 =>         /usr/lib/libsecdb.so.1
  6.         libnsl.so.1 =>   /usr/lib/libnsl.so.1
  7.         libc.so.1 =>     /usr/lib/libc.so.1
  8.         libcmd.so.1 =>   /usr/lib/libcmd.so.1
  9.         libdl.so.1 =>    /usr/lib/libdl.so.1
  10.         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 .. 等功能)

论坛徽章:
0
115 [报告]
发表于 2012-09-20 10:27 |只看该作者
没有问题,坚决支持

论坛徽章:
0
116 [报告]
发表于 2012-10-05 18:06 |只看该作者
慢慢学习.....................

论坛徽章:
0
117 [报告]
发表于 2012-10-16 09:59 |只看该作者
我也想了解,请大家都说说

论坛徽章:
1
双子座
日期:2014-09-25 10:56:43
118 [报告]
发表于 2012-10-30 14:08 |只看该作者
makr
11111111111111111

论坛徽章:
2
羊年新春福章
日期:2015-04-27 16:56:53射手座
日期:2015-04-27 16:58:18
119 [报告]
发表于 2012-11-29 00:46 |只看该作者
第一种错误输出会覆盖标准输出的,而第二种则不会!回复 36# 寂寞烈火


   

论坛徽章:
0
120 [报告]
发表于 2012-12-03 12:57 |只看该作者
...............
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP