本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- 龙儿筝
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- Xeden
- zhanjia
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
- lich0079
最新文章列表
搞定Git中文乱码、用TortoiseMerge实现Diff/Merge
#!/bin/sh
# 全局提交用户名与邮箱
git config --global user.name "Yuchen Deng"
git config --global user.email loaden@gmail.com
# 中文编码支持
echo "export LESSCHARSET=utf-8" > $HOME/.prof ...
安装Perl::Tidy模块
1.Perl 提供了 Perl::Tidy 这个工具可以直接将乱七八糟的 Perl代码整理成格式完美的代码。
而且使用方便
对某个Perl源代码只要运行下面的命令即可:
perltidy foo.pl
整理好格式的代码会保存为 foo.pl.tdy。
2.可以通过 ppm 安装 Perl::Tidy 软件包。
但在ppm上找不到,只好下载源码自己编译安装;
下载地址 ...
Perl 一个简单的 GUI 程序,有退出按钮
#!/usr/bin/perl -w
use Tk;
$Tk::strictMotif = 1;
$main = MainWindow->new();
$button1 = $main->Button(-text => "Exit",
-command => \&exi ...
Perl 数据库事务处理(提交和回滚)
use DBI qw(:sql_types);
my $dbh = DBI->connect('dbi:mysql:sample_db','root','password',{
PrintError => 0,
RaiseError => 1,
...
Perl中的正则表达式
正则表达式是 Perl 语言的一大特色,也是 Perl 程序中的一点难点,不过如果大家能够很好的掌握他,就可以轻易地用正则表达式来完成字符串处理的任务,当然在 CGI 程序设计中就更能得心应手了。下面我们列出一些正则表达式书写时的一些基本语法规则。----------------------------------------------------------------------------- ...
Perl 读写excel 遇到空行,删除空行
在用perl循环读写excle的行时,发行如果遇到空行也要循环好多次,本来想在perl中解决这个问题,可是没有找到较好的处理方法,就找到了一个怎么在excle中删除空行的方法:
“定位”法
表格编辑完毕,当需要批理删除其中的空行时,依次点击菜单栏的“编辑/定位”,在弹出的“定位”对话框中单击“定位条件”按钮。在接着弹出的“定位条件”对话框中点选“空值”单选按项(如图1),单击“确定”按钮。好了 ...
正则表达式-----笔记
第七章 正则表达式
一、正则表达式的支持
var reg=new RegExp("cat")//匹配字符串中第一次出现的cat
var reg=new RegExp("cat","g")//“g”是glob ...
Perl 与 Python 之间的一些异同
http://www.ibm.com/developerworks/cn/linux/l-cn-perl2python/index.html
Perl 是 Practical Extraction and Report Language 的简称,由 1987 年 Larry Wall 创建,最初的目的是为了在 UNIX 上方便处理报表,经过长期的发展已经成为一种全功能的程序设计语言,当前最新的版本 ...
linux终端使用perl
可以在linux终端使用perl进行一些数据分析统计抓取,特别的方便,
举个例子:
less /tmp/tmp.log | perl -n -e '/ GET(.*) HTTP/ && print "$1\n"'
或者
perl -n -e '/ GET(.*) HTTP/ && print "$1\n"' ...
Perl基础知识
perl基础教程
http://ind.ntou.edu.tw/~dada/cgi/Perlsynx.htm
实验1:
sites.csv文件,每行中的数据用Tab分割
www.google.com google
www.baidu.com baidu
test.pl文件:
#!/usr/bin/perl -w
use warnings;
my $siteConfigDir="/ ...
perl接受传递参数的几种方法
1.使用一个参数读取shell传递来的多个参数:
目录下:
a.log
b.log
c.log
dota.pl
dota.pl的内容如下:
#! /usr/bin/perl
use Getopt::Std;
use warnings;
use strict;
sub read_from_sh($) {
my $file = shift;
my @files = ();
...
perl fork子进程
Perl fork()
Forking in perl is a nice thing to do, and for some it’s a hard thing to understand. It can be pretty easy to get lost especially since there are 100 ways to the same thing. I’m going to at ...
看错误号的定义
perl -MPOSIX -e 'print strerror($ARGV[0])."\n";' 14
--------------
$ cp /work/host/phone/ui/main.cpp !#$:s/host/target
expand to:
cp /work/host/phone/ui/main.cpp /work/target/phone/ui/main.c ...