2011-01-01から1年間の記事一覧
#-------------------------------------------------- # cutコマンド(スペース区切り、2,4つ目) $ echo ab cd ef gh ij kl mn | cut -d ' ' -f2,4 $ cd ef #-------------------------------------------------- # cutコマンド(スペース区切り、2つ目以…
perl共有メモリ (Obsolete) Parallel::ForkManager + IPC::Shareable で複数のプロセスで変数を共有する - Yet Another Hackadelic
初めての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 第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"; #-------------------------------------------------------------------…
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…
インストール手順(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…
Windowのキーボード操作に近づける設定 CommandキーをCtrlキーへ CapsLockキーはCapsLockキーへ ControlキーはWindowsキーへ OptionはAltキーへ 全角/半角によるIMEの切り替える 円マークキー入力をバックスラッシュへ ターミナルの場合、Ctrl と Commandの…
基本 > sudo cpan cpan > install モジュール名 cpanインストールディレクトリ確認 > perl -e 'print "@INC"'参考リンク 第7回 新人さんのための仕事で使えるPerl基礎知識(1):Perl Hackers Hub|gihyo.jp … 技術評論社
トラックポイントのスピード/感度調整設定。 -- /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 センタースクロー…
#------------------------------------------------------------------------------- # main.pl #------------------------------------------------------------------------------- #!usr/bin/perl #必須です use strict; use warnings; #文字コード use …
参考サイト shell シェルプログラミングの基礎知識 | Shinta's Site FrontPage - Linuxと過ごす command Linuxコマンド集 - Linuxコマンド集 INDEX:ITpro 相対パスから絶対パスを取得 $(cd $(dirname $1) && pwd)/$(basename $1) 基本サンプルコード #!/bin…
モード ESCによる切りかえ(コマンド ⇔ 編集) カーソル移動 基本はカーソル、HOME、ENDでOK(他のキーは置いとく) "ctrl + b" → 前ページ "ctrl + f" → 後ページ ":0" → ファイルの先頭へ ":$" → ファイルの末尾へ ":数字" → 指定行へ 保存 ":q" → 終了 ":…
[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…
[.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) …