免费注册 查看新帖 |

Chinaunix

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

小腳本 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-06-30 21:53 |只看该作者 |倒序浏览
寫了個腳本計算文件單字數目的和根據數量打印 #### 代表數字的 chart,
但有一個問題 , read -r 已用了 , 但反斜線 \ 還是讀不到, 幫忙一下

#! /bin/bash
# words fequence counting and format with a chart
# CYGWIN_NT-6.0 User-PC 1.5.24,GNU bash version 3.2.17
# Jun 30, 2007 twf_cc@yahoo.com.hk
# public domain

# init some stuff
  tempfile=$HOME/junk1.$$
  tempfile2=$HOME/junk2.$$
  msg="abort by user..exiting"
  msg2="Usage: $0 [option][ -c --chart | -n --number ] file"
  msg3="file not found"

  if [ $# -eq 0 ] ; then
     echo "$msg2" >&2
     exit 1
  elif [ $# -eq 1 ] ; then
     file=$1
  elif [ $# -eq 2 ] ; then
     option=$1
     file=$2
  else
     option=$1
     file=$2
  fi

# make something to avoid remaining temp file
# when an accident is happened
  trap "echo $msg >&2 ; rm -f $tempfile $tempfile2 ; exit 1"  1 2 15

# check command line arugment, file is existed
  [ -f "$file" ] || { echo "$file: $msg3" >&2 ; exit 1 ; }

# ok , make a temp file, sorting and counting its word
  cat "$file" | tr -s ' ' '\n' | sort | uniq -c | sort -rn > $tempfile

# make something to the data
  jpg='#'

  while read -r num word
    do
     echo -ne "$num\t$word\t"
     printf '%*s\n' $num | tr " " "$jpg"
    done < $tempfile > $tempfile2
# format the output
   case "$option" in
       -c| --chart) awk '{
                           printf("%-20s%-30s\n", $2, $3)
                           }' $tempfile2
                           ;;

       -n| --number) awk '{
                           printf("%-20s%-30s\n", $2, $1)
                           }' $tempfile2
                           ;;

                  *) awk '{
                           printf("%-20s%-30s%-20s\n", $2, $1, $3)
                           }' $tempfile2
                           ;;
   esac

   rm -f $tempfile $tempfile2
   exit 0

论坛徽章:
0
2 [报告]
发表于 2007-06-30 22:17 |只看该作者
read: read [-ers] [-u fd] [-t timeout] [-p prompt] [-a array] [-n nchars] [-d delim] [name ...]
If the -r option is given, this signifies `raw' input, and
    backslash escaping is disabled.

怪了...我還以為記錯了....???
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP