2011-01-01から1年間の記事一覧

便利なlinuxのコマンド

#-------------------------------------------------- # cutコマンド(スペース区切り、2,4つ目) $ echo ab cd ef gh ij kl mn | cut -d ' ' -f2,4 $ cd ef #-------------------------------------------------- # cutコマンド(スペース区切り、2つ目以…

perl共有メモリ

perl共有メモリ (Obsolete) Parallel::ForkManager + IPC::Shareable で複数のプロセスで変数を共有する - Yet Another Hackadelic

perlの複数項目ソート

初めてのPerl 第6版作者: Randal L. Schwartz,brian d foy,Tom Phoenix,近藤嘉雪出版社/メーカー: オライリージャパン発売日: 2012/07/25メディア: 大型本購入: 7人 クリック: 22回この商品を含むブログ (17件) を見る perlの複数項目ソートのサンプル #test…

処理時間

perlスクリプトの処理時間 use Time::HiRes; my $start_time = Time::HiRes::time; ##################### # 処理 ##################### #処理時間を表示 printf("%0.3f",Time::HiRes::time - $start_time);

ウェブページ取得と解析

perlによるウェブページ取得と解析 #!/usr/bin/perl use strict; use warnings; use LWP::UserAgent; use HTML::TreeBuilder; print("---------------------------------------- script start\n"); #ページ取得 my $url = "http://www.yahoo.co.jp"; my $ua …

ウェブページの取得

perlウェブページの取得 use strict; use warnings; use LWP::UserAgent; my $url = "http://www.yahoo.co.jp"; my $ua = LWP::UserAgent->new; $ua->agent('Mozilla'); my $res = $ua->get($url); my $content = $res->content; print($content."\n");

perlによるhtmlの解析

初めてのPerl 第6版作者: Randal L. Schwartz,brian d foy,Tom Phoenix,近藤嘉雪出版社/メーカー: オライリージャパン発売日: 2012/07/25メディア: 大型本購入: 7人 クリック: 22回この商品を含むブログ (17件) を見る perlによるhtmlの解析サンプルコード u…

スレッド間共有変数

perlスレッド間共有変数 use strict; use warnings; use threads; use threads::shared; use Time::HiRes; #文字コード use utf8; binmode STDIN, ":utf8"; binmode STDOUT, ":utf8"; #-------------------------------------------------------------------…

perl並列処理

threads use strict; use warnings; use threads; my $thr1 = threads->create(\&sub1,"yasai","kudamono"); my $thr2 = threads->create(\&sub1,"daikon","apple"); my @ReturnData1 = $thr1->join(); my @ReturnData2 = $thr2->join(); print("thread 1 re…

cpanをユーザーディレクトリへインストール(Cent OS)

インストール手順(Cent OSで確認しました) http://blog.hide-k.net/archives/2009/02/locallibrootcpa.php

シェルの逐次実効、バックグランド実効

#---------------------------------------- test.pl for(my $i = 0; $i < 10; $i++){ print($ARGV[0]."_$i\n"); sleep(rand(3)); } 逐次実効 #---------------------------------------- test_tikuzi.sh #逐次実効(waitで終了を待つ) perl test.pl AAA wa…

macからwindowsキーボードへのマッピング

mac

Windowのキーボード操作に近づける設定 CommandキーをCtrlキーへ CapsLockキーはCapsLockキーへ ControlキーはWindowsキーへ OptionはAltキーへ 全角/半角によるIMEの切り替える 円マークキー入力をバックスラッシュへ ターミナルの場合、Ctrl と Commandの…

cpan-memo

基本 > sudo cpan cpan > install モジュール名 cpanインストールディレクトリ確認 > perl -e 'print "@INC"'参考リンク 第7回 新人さんのための仕事で使えるPerl基礎知識(1):Perl Hackers Hub|gihyo.jp … 技術評論社

Thinkpad T61のトラックポイント設定

トラックポイントのスピード/感度調整設定。 -- /etc/rc.localに下記を設定、exit 0 をコメント。 echo -n 140 > /sys/devices/platform/i8042/serio1/serio2/speed echo -n 240 > /sys/devices/platform/i8042/serio1/serio2/sensitivity センタースクロー…

perl基礎

#------------------------------------------------------------------------------- # main.pl #------------------------------------------------------------------------------- #!usr/bin/perl #必須です use strict; use warnings; #文字コード use …

bashメモ

参考サイト shell シェルプログラミングの基礎知識 | Shinta's Site FrontPage - Linuxと過ごす command Linuxコマンド集 - Linuxコマンド集 INDEX:ITpro 相対パスから絶対パスを取得 $(cd $(dirname $1) && pwd)/$(basename $1) 基本サンプルコード #!/bin…

vim操作

モード ESCによる切りかえ(コマンド ⇔ 編集) カーソル移動 基本はカーソル、HOME、ENDでOK(他のキーは置いとく) "ctrl + b" → 前ページ "ctrl + f" → 後ページ ":0" → ファイルの先頭へ ":$" → ファイルの末尾へ ":数字" → 指定行へ 保存 ":q" → 終了 ":…

ruby基礎

[ruby]ruby基礎 #----------------------------------------------------------------------------- sample.rb # -*- coding: utf-8 -*- =begin -------------------------------------------------------------------------------- sample.rb - ruby.1.92 -…

標準クエリ演算子サンプル

[.net]標準クエリ演算子サンプル using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ShugoTest { class Person { public string name = string.Empty; public int old = 0; public Person(string name, int…

linqサンプル

[.net]linqサンプル //linq test code using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml; using System.Xml.Linq; namespace LinqTest { class Word { public string data; public Word(string s) …