两个很详细的shell 实例代码(shell示例)一篇读懂

随心笔谈9个月前更新 admin
209 00
🌐 经济型:买域名、轻量云服务器、用途:游戏 网站等 《腾讯云》特点:特价机便宜 适合初学者用 点我优惠购买
🚀 拓展型:买域名、轻量云服务器、用途:游戏 网站等 《阿里云》特点:中档服务器便宜 域名备案事多 点我优惠购买
🛡️ 稳定型:买域名、轻量云服务器、用途:游戏 网站等 《西部数码》 特点:比上两家略贵但是稳定性超好事也少 点我优惠购买

文章摘要

本文描述了一个C语言脚本,实现了一个二进制转十进制计算器的功能。脚本包含多个函数:`help()` 用于显示帮助信息,`error()` 用于处理错误情况,`lastchar()` 和 `chop()` 分别用于获取字符串最后一个字符并去掉最后一个字符。主程序通过循环读取二进制数,逐位转换为十进制并累加结果,最后输出转换结果。代码结构清晰,逻辑简洁。

#!/bin/sh

# vim: set sw=4 ts=4 et:

help()

{

 cat < b2h — convert binary to decimal

USAGE: b2h [-h] binarynum

OPTIONS: -h help text

EXAMPLE: b2h 111010

will return 58

HELP

 exit 0

}

error()

{

  # print an error and exit

  echo “$1”

  exit 1

}

lastchar()

{

  # return the last character of a string in $rval

  if [ -z “$1” ]; then

    # empty string

    rval=””

    return

  fi

  # wc puts some space behind the output this is why we need sed:

  numofchar=`echo -n “$1” | wc -c | sed ‘s/ //g’ `

  # now cut out the last char

  rval=`echo -n “$1” | cut -b $numofchar`

}

chop()

{

  # remove the last character in string and return it in $rval

  if [ -z “$1” ]; then

    # empty string

    rval=””

    return

  fi

  # wc puts some space behind the output this is why we need sed:

  numofchar=`echo -n “$1” | wc -c | sed ‘s/ //g’ `

  if [ “$numofchar”=”1” ]; then

    # only one char in string

    rval=””

    return

  fi

  numofcharminus1=`expr $numofchar “-” 1`

  # now cut all but the last char:

  rval=`echo -n “$1” | cut -b 0-${numofcharminus1}`

}

while [ -n “$1” ]; do

case $1 in

  -h) help;shift 1;; # function help is called

  –) shift;break;; # end of options

  -*) error “error: no such option $1. -h for help”;;

  *) break;;

esac

done

# The main program

sum=0

weight=1

# one arg must be given:

[ -z “$1” ] && help

binnum=”$1″

binnumorig=”$1″

while [ -n “$binnum” ]; do

  lastchar “$binnum”

  if [ “$rval”=”1” ]; then

    sum=`expr “$weight” “+” “$sum”`

  fi

  # remove the last position in $binnum

  chop “$binnum”

  binnum=”$rval”

  weight=`expr “$weight” “*” 2`

done

echo “binary $binnumorig is decimal $sum”

#

© 版权声明

相关文章