百度Linux笔试题和面试题答案(2)

招聘笔试题2018-11-22李天扬老师

  read Arg1

  read Arg2

  Result=`expr $Arg1 - $Arg2`

  echo $Result 或

  #!/bin/bash

  declare -rx SCRIPT=${0##*/}

  declare -ix NUM1

  declare -ix NUM2

  declare -ix NUM3

  read -p "input a number" NUM1

  read -p "input another number" NUM2

  let "NUM3=NUM1-NUM2"

  printf "the result of $NUM1 minus $NUM2 is %d\n" "$NUM3"

  3. 命令行替换用反引号,if [$?==0] 应该写做if [ $?=0 ],用来判断上次命令是否执行成功;

  倒数第二行应该是>/dev/null,最后fi后面的>去掉。 更多热门文章分享:
DTT集团笔试真题
Adobe技术工程师笔试真题
房地产行业校招计算机类笔试真题

相关推荐

猜你喜欢

大家正在看

换一换