免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 4721 | 回复: 12
打印 上一主题 下一主题

模擬命令的腳本 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-07-02 19:53 |只看该作者 |倒序浏览
數天前重新發命了一個輪子,引來高手,正是拋磚引玉,有賺頭
今天再做一個輪子,是 ruby 下的 capticalize 方法,雖然這個
方法我要到 ruby 版求助,等價的 命令為,
echo uNIX |sed 's/\(.\)\(..*\)/\u\1\L\2/'
GNU sed 4.1.X version  
就是把第一個字母改成大寫,其它小寫

#! /bin/bash
# translate first char of word from lowercase to uppercase, other chars
# translate from uppercase to lowercase if it is in uppercase
# Usage: $0 argument
# Idea comes from Ruby's method `capticalize', written in pure bash.
# CYGWIN_NT-6.0 User-PC 1.5.24, GNU bash version 3.2.17
# jul 2, 2007  twf_cc@yahoo.com.hk
# public domain

# init some stuff ...

  input=$* ; output="" ; ilength=${#input}

# function, transtle first char to uppercase
  first_char_to_upper() {

                   # split given word with ${var:lengthffset}
                   first=${input:0:1}

                   # tramslate the first char first
                   case "$first" in
                      a) first=A ;; b) first=B ;; c) first=C ;;
                      d) first=D ;; e) first=E ;; f) first=F ;;
                      g) first=G ;; h) first=H ;; i) first=I ;;
                      j) first=J ;; k) first=K ;; l) first=L ;;
                      m) first=M ;; n) first=N ;; o) first=O ;;
                      p) first=P ;; q) first=Q ;; r) first=R ;;
                      s) first=S ;; t) first=T ;; u) first=U ;;
                      v) first=V ;; w) first=W ;; x) first=X ;;
                      y) first=Y ;; z) first=Z ;; *) first=$first ;;
                   esac

                      # storage of the result.
                      output="${output}${first}"
                  }

# function, translate other chars to lowercase
  other_char_to_lower() {

                   # init an empty var for result storage
                   other_out=""

                   # translate other chars to lowercase if it is
                   # in uppercase. One by one old fashion..
                   for (( i=1 ;  i<$ilength ; i++ ))
                     do

                       # split remained chars still using
                       # ${var:lengthffset},progress in looping
                       other=${inputi:1}

                         # translate remained chars to lowercase
                         case "$other" in
                           A) other=a ;; B) other=b ;; C) other=c ;;
                           D) other=d ;; E) other=e ;; F) other=f ;;
                           G) other=g ;; H) other=h ;; I) other=i ;;
                           J) other=j ;; K) other=k ;; L) other=l ;;
                           M) other=m ;; N) other=n ;; O) other=o ;;
                           P) other=p ;; Q) other=q ;; R) other=r ;;
                           S) other=s ;; T) other=t ;; U) other=u ;;
                           V) other=v ;; W) other=w ;; X) other=x ;;
                           Y) other=y ;; Z) other=z ;; *) other=$other ;;
                         esac

                           # storage of the result
                             other_out="${other_out}${other}"
                      done
               }

# operation of two function above and print result
  capticalize() {
                first_char_to_upper "$input"
                other_char_to_lower "$input"
                output="${output}${other_out}"
                echo "$output"
                }


# ok, we are going to translate it.
  capticalize "$input"

歡迎交流,有錯請指出.謝謝

论坛徽章:
0
2 [报告]
发表于 2007-07-02 20:18 |只看该作者
perl的正则可以更加优雅的完成这个功能^^

  1. perl -pe '{s:(.)(.*):\u$1\L$2:}'
复制代码

论坛徽章:
0
3 [报告]
发表于 2007-07-02 20:21 |只看该作者
哈哈,引來第一個了...
多謝你的 perl code

论坛徽章:
7
荣誉版主
日期:2011-11-23 16:44:17子鼠
日期:2014-07-24 15:38:07狮子座
日期:2014-07-24 11:00:54巨蟹座
日期:2014-07-21 19:03:10双子座
日期:2014-05-22 12:00:09卯兔
日期:2014-05-08 19:43:17卯兔
日期:2014-08-22 13:39:09
4 [报告]
发表于 2007-07-02 20:31 |只看该作者
sed的进化真快,这是传统的方法
  1. #!/bin/sed -f
  2. s/$/\naAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ/
  3. :a
  4. s/\b\([a-z]\)\(.*\n.*\)\1\(.\)/\3\2\1\3/                                       
  5. ta
  6. s/\n.*//
复制代码

论坛徽章:
0
5 [报告]
发表于 2007-07-02 20:37 |只看该作者
在 Cygwin 下的 /usr/share/doc/sed-4.1.5 (?)內有一本很好的手冊,很多例子,和新的特性
那個英文好的網友幫手翻譯一下?

论坛徽章:
0
6 [报告]
发表于 2007-07-02 20:40 |只看该作者
原帖由 r2007 于 2007-7-2 20:31 发表
sed的进化真快,这是传统的方法
[code]#!/bin/sed -f
s/$/\naAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ/
:a
s/\b\([a-z]\)\(.*\n.*\)\1\(.\)/\3\2\1\3/                                       
...



快點升級你的 sed 了 , 打小很多字也

论坛徽章:
0
7 [报告]
发表于 2007-07-02 22:01 |只看该作者
原帖由 Edengundam 于 2007-7-2 20:18 发表
perl的正则可以更加优雅的完成这个功能^^

  1. perl -pe '{s:(.)(.*):\u$1\L$2:}'
复制代码

优雅么?和gsed的差不多嘛。

论坛徽章:
0
8 [报告]
发表于 2007-07-02 22:20 |只看该作者
原帖由 一梦如是 于 2007-7-2 22:01 发表

优雅么?和gsed的差不多嘛。




你知道我只尽量使用每种命令最基本的命令集...也懒得去学各种扩展我的脑袋要爆炸了..呵呵

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
9 [报告]
发表于 2007-07-03 00:30 |只看该作者
awk最好理解~ ^_^

  1. awk '{print toupper(substr($0,1,1))tolower(substr($0,2,length($0)))}'
复制代码

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
10 [报告]
发表于 2007-07-03 09:30 |只看该作者
very good  , perl code
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP