`
xxrrss
  • 浏览: 43275 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表

impatient perl

impatient perl book.

english training.

    博客分类:
  • J2SE
http://www.write-out-loud.com/dictionexercises.html
在Perl处理list中,很方便的module, List-Compare 有三种case: Regular Case, Accelerated Case, Multiple Case Regular Case: example: my @Llist = qw(abel abel baker camera delta edward fargo gofler); my @Rlist = qw(baker camera delta delta fargo hilton); my $lc = List::Compare->new(\@Llist,\@Rlist); my @inte ...

常用Shell命令

ls /bin/[a-c]* ls /bin/[!a-o] ls /bin/[^a-o] date;who clear date ls > filename date >> myfiles cat < myfiles cat > sname sort < sname > sorted_names tr "[a-z]" "[A-Z]" < sname > cap_names sort > new_sorted_names < sname ls | more who | sort who ...
需求变化:保存7天内的数据,和最近4个月末的数据 -->保留最近5个business day和4各与月末的数据 第一个需求sybase代码的编写:(其中runcob是一个字段) s.RunCob < dateadd(dd, -7, convert(char(8),'20091027',112)) and s.RunCob != dateadd(day,-1,convert(datetime,'01/' + convert(char(2),DatePart(mm, DateAdd(mm, -1, '20091027'))) +'/'+datename(year,'2009102 ...
    今天经理(刚从美国回来)给我们发表了一篇激情的演讲《开发人员与测试人员的交流规范》,顿然茅塞顿开!内容不多!可是这种组织,沟通的方式却令我非常欣赏! 大概内容如下: 一:程序员的思路 二:测试人员的思路 三:二者的碰撞 四:最终的解决方案

shell 中 if condition

est command or [ expr ] is used to see if an expression is true, and if it is true it return zero(0), otherwise returns nonzero for false. Syntax: test expression OR [ expression ] Example: Following script determine whether given argument number is positive. $ cat > ispostive #!/bin/sh # # Scrip ...
在本文章系列中,Daniel Robbins 将为您演示如何使用功能十分强大(但常被遗忘)的 UNIX 流编辑器 sed。sed 是用批处理方式编辑文件或以十分有效的方式创建 shell 脚本以修改现有文件的理想工具。 挑选编辑器 在 UNIX 世界中有很 ...
    * 数组:chomp, join, keys, map, pop, push, reverse, shift, sort, splice, split, unshift, values     * 数据库:dbmclose, dbmopen     * 目录:chdir, closedir, mkdir, opendir, readdir, rewinddir, rmdir, seekdir, telldir     * 文件:binmode, chdir, chmod, chown, chroot, close, eof, fnctl, fileno, flock, getc, glo ...
[size=medium]$- 当前页可打印的行数,属于Perl格式系统的一部分   $! 根据上下文内容返回错误号或者错误串   $” 列表分隔符   $# 打印数字时默认的数字输出格式   $$ Perl解释器的进程ID   $% 当前输出通道的当前页号   $& 与上个格式匹配的字符串   $( 当前进程的组ID   $) 当前进程的有效组ID   $* 设置1表示处理多行格式.现在多以/s和/m修饰符取代之.   $, 当前输出字段分隔符   $. 上次阅读的文件的当前输入行号   $/ 当前输入记录分隔符,默认情况是新行   $: 字符设置,此后的字符串将被分开,以填充连续的字 ...

module

package com.bjsxt.oa.model; import java.util.Set; /** * * @author Administrator * @hibernate.class table="T_Module" */ public class Module { /** * @hibernate.id * generator-class="native" */ private int id; /** * 模块名称 * @hibernate.property * not-null= ...

CVS流程

15. Example: Creating a new project from scratch In this example a new project is started from scratch. The project administrator must first create the CVS repository. In this example all project files will be stored in /home/projects/myproj and only the project members can access that directory. T ...
Creating a CVS Repository by Jeff Hunter, Sr. Database Administrator Now, let's create a CVS repository. You will first need to decide on the location of the directory where you want to store the CVS repository. Here are several suggestions of directory locations for the repository:     * /usr/loc ...
将在工作过程中遇到的各种与硬件相关的命令收集在此,不断更新,大家也可以补充: 补充完后,实验成功,我会及时更新. 查看显卡型号: lspci |grep VGA 查看linux内核版本: uname -a
[size=medium]玩儿转Linux:终端命令用法精选 最近再一次拾起了Ubuntu,为了更好的玩儿转Linux,专门到网上搜到的这些常用的终端命令,根据命令使用类别的不同分为了9个大类,都在下面一一列举了出来,个人觉得还是很有用的,在以后的时间里,小弟会随时更新自己对于Ubuntu的使用心得一. 文件目录类 1.建立目录:mkdir 目录名 2.删除空目录:rmdir 目录名 3.无条件删除子目录: rm -rf 目录名 4.改变当前目录:cd 目录名 (进入用户home目录:cd ~;进入上一级目录:cd -) 5.查看自己所在目录:pwd 6.查看当前目录大小:du 7.显示目录文 ...
Global site tag (gtag.js) - Google Analytics