亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費(fèi)注冊(cè) 查看新帖 |

Chinaunix

  平臺(tái) 論壇 博客 文庫(kù)
最近訪問(wèn)板塊 發(fā)新帖
查看: 1241 | 回復(fù): 1
打印 上一主題 下一主題

100 CoolShell ch01 問(wèn)題 [復(fù)制鏈接]

論壇徽章:
0
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報(bào)告]
發(fā)表于 2012-03-20 16:53 |只看該作者 |倒序?yàn)g覽
  1. #!/bin/sh
  2. # inpath - Verifies that a specified program is either valid as is,
  3. #   or that it can be found in the PATH directory list.

  4. in_path()
  5. {
  6.   # Given a command and the PATH, try to find the command. Returns
  7.   # 0 if found and executable, 1 if not. Note that this temporarily modifies
  8.   # the IFS (input field separator) but restores it upon completion.

  9.   cmd=$1        path=$2         retval=1
  10.   oldIFS=$IFS   IFS=":"

  11.   for directory in $path
  12.   do
  13.     if [ -x $directory/$cmd ] ; then
  14.       retval=0      # if we're here, we found $cmd in $directory
  15.     fi
  16.   done
  17.   IFS=$oldIFS
  18.   return $retval
  19. }

  20. checkForCmdInPath()
  21. {
  22.   var=$1

  23.   # The variable slicing notation in the following conditional
  24.   # needs some explanation: ${var#expr} returns everything after
  25.   # the match for 'expr' in the variable value (if any), and
  26.   # ${var%expr} returns everything that doesn't match (in this
  27.   # case, just the very first character. You can also do this in
  28.   # Bash with ${var:0:1}, and you could use cut too: cut -c1.

  29.   if [ "$var" != "" ] ; then
  30.     if [ "${var%${var#?}}" = "/" ] ; then
  31.       if [ ! -x $var ] ; then
  32.         return 1
  33.       fi
  34.     elif ! in_path $var $PATH ; then
  35.       return 2
  36.     fi
  37.   fi
  38. }

復(fù)制代碼
其中后那個(gè)elif ! in_path $var $PATH 看不懂啊,請(qǐng)教各位。。。

論壇徽章:
33
ChinaUnix元老
日期:2015-02-02 08:55:39CU十四周年紀(jì)念徽章
日期:2019-08-20 08:30:3720周年集字徽章-周	
日期:2020-10-28 14:13:3020周年集字徽章-20	
日期:2020-10-28 14:04:3019周年集字徽章-CU
日期:2019-09-08 23:26:2519周年集字徽章-19
日期:2019-08-27 13:31:262016科比退役紀(jì)念章
日期:2022-04-24 14:33:24
2 [報(bào)告]
發(fā)表于 2012-03-20 18:40 |只看該作者
調(diào)用函數(shù)in_path,$var和$PATH傳到函數(shù)里面之后就是$1和$2
還有哪里不懂?
您需要登錄后才可以回帖 登錄 | 注冊(cè)

本版積分規(guī)則 發(fā)表回復(fù)

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號(hào)-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號(hào):11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報(bào)專區(qū)
中國(guó)互聯(lián)網(wǎng)協(xié)會(huì)會(huì)員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過(guò)ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請(qǐng)注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP