找回密码
 FreeOZ用户注册
查看: 1448|回复: 2
打印 上一主题 下一主题

[论坛技术] shell script 又学了一招

[复制链接]
跳转到指定楼层
1#
发表于 4-3-2010 22:38:41 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
提示: 作者被禁止或删除, 无法发言

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?FreeOZ用户注册

x
shell 编程还是ksh 好,bash没有这些功能。

1)match any three digits

#!/bin/ksh
if [[ $1 = {3}(\d) ]]; then
echo Match
fi

2) match Low or HiGh case-insensitive
normal sh/bash usage: [ $1 = low -o $1 = high ], case-insensitive need shell option nocasematch enabled

#!/bin/ksh
if [[ $1 = @(~(i:low|high)) ]]; then
echo Match
fi


more info "man ksh"


?(pattern-list )
Optionally matches any one of the given patterns.
*(pattern-list )
Matches zero or more occurrences of the given patterns.
+(pattern-list )
Matches one or more occurrences of the given patterns.
{n }(pattern-list )
Matches n  occurrences of the given patterns.
{m ,n }(pattern-list )
Matches from m  to n  occurrences of the given patterns. If m  is omitted, 0 will be used. If n  is omitted at least m  occurrences will be matched.
@(pattern-list )
Matches exactly one of the given patterns.

!(pattern-list )
Matches anything except one of the given patterns
回复  

使用道具 举报

2#
发表于 8-3-2010 12:57:26 | 只看该作者
提示: 作者被禁止或删除, 无法发言
perl不错
回复  

使用道具 举报

3#
发表于 8-3-2010 13:17:16 | 只看该作者
python也不错
回复  

使用道具 举报

您需要登录后才可以回帖 登录 | FreeOZ用户注册

本版积分规则

小黑屋|手机版|Archiver|FreeOZ论坛

GMT+11, 1-2-2025 09:09 , Processed in 0.031958 second(s), 18 queries , Gzip On, Redis On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表