SHELL
koutatu
这个作者很懒,什么都没留下…
展开
-
shell中使用sed替换指定位置的字符
#!/bin/shread strread indexread replaceindex = `expr $index - 1`echo $str | sed 's/\([a-zA-Z0-9]\{'$index'\}\)\(.\)\(.*\)/\1'$replace'\3/'原创 2011-12-06 21:48:58 · 8823 阅读 · 1 评论 -
Shell脚本截取字符串
#!/bin/shstr="1234 | 5678 | 90 1234 43 "echo $str#全局删除空格str1=`echo $str | cut -d '|' -f 1 | sed s/' '//g`echo "###$str1###"str2=`echo $str | cut -d '|' -f 2 | sed s/' '//g`echo "#原创 2011-12-14 11:53:23 · 420 阅读 · 0 评论