UnixText2.pptx

Size: px
Start display at page:

Download "UnixText2.pptx"

Transcription

1 Unix Unix! grep! sed! sort! cut! join! awk!

2 (grep)! grep ' ' [...]! grep 'GO' 1433B_HUMAN.sprot!! 1433B_HUMAN.sprot GO grep '^FT' 1433B_HUMAN.sprot!! 1433B_HUMAN.sprot FT! grep -v! grep -i! grep -w!!! grep!! File1 (File1!! [ ] File[1-3] (File1, File2, File3! \! \[abc\] ([abc] ) ' '

3 !.! a.c abc, adc a c! []!! [ad3@] a, d, [a-d] a, b, c, d! [^abd] a, b, d! ^, $! ^ID ID!! ;$ ;!! *! a.*m a m am, arm, alarm am am! grep E egrep! +! [a-z]+ [a-z][a-z]*!?! proteins? protein proteins!! {n,m} n m!! [1-9][0-9]{2,3} ( )!! [0-9]{5} 5 ( )!! OR! ( ) [ ]! tyrosine.*(kinase phosphatase) "#$%&'()*+,'(-&)!!"#$%&'()*+./%&./-"-&)!!! tyrosine.*kinase phosphatase "#$%&'()*+,'(-&)!!./%&./-"-&)!!

4 ! FASTA mouse.fas >mouse:q0vbh3 Olfr629 protein! MAGNATHHIASFFLVGIPGLENFHCWIGIPVCLLFALTLLGNSIILTTVKLEPSLHQPMY! FFLCMLAMNDMCLTCSTALKMLGIFWFDEHWINFDACLTQMFFIHTLCIMESAILVAMAF! DRFVAICIPLHYTSILTTPMVIKIGLVGLSRAILMIMPCPLLIKRLLYYTKYVIHHAYCE! HMAVVKMASGNTQVNRIYGILVALSVTIFDLGLIVTSYIKILQAVFRLSSQNARSKALGT! CVAHVCTILAFYTPALFSFLTHRFGKNVPASIHIIFAILYLLVSPTVNPLVYGAKTKQIR! DRVVSLLFSQKQKF! >mouse:q9jmi7 Testis-expressed protein 101! MGACRIQYVLLIFLLIASRWTLVQNTYCQVSQTLSLEDDPGRTFNWTSKAEQCNPGELCQ! ETVLLIKADGTRTVVLASKSCVSQGGEAVTFIQYTAPPGLVAISYSNYCNDSLCNNKDSL! ASVWRVPETTATSNMSGTRHCPTCVALGSCSSAPSMPCANGTTQCYQGRLEFSGGGMDAT! VQVKGCTTTIGCRLMAMIDSVGPMTVKETCSYQSFLQPRKAEIGASQMPTSLWVLELLFP! LLLLPLTHFP!! grep '^>' mouse.fas ' ' (sed) sed 's/ / /g' [ ]!!! sed 's/abc/xyz/g' file file abc xyz!! g! sed 's/:/ /' file :! sed ' '

5 FASTA mouse.fas FASTA > grep ^>' mouse.fas sed s/^>// sed 's/ /Tab/' > mouse.tit! >mouse:q0vbh3 Olfr629 protein! MAGNATHHIASFFLVGIPGLENFHCWIGIPVCLLFALTLLGNSIILTTVKLEPSLHQPMY! FFLCMLAMNDMCLTCSTALKMLGIFWFDEHWINFDACLTQMFFIHTLCIMESAILVAMAF! DRFVAICIPLHYTSILTTPMVIKIGLVGLSRAILMIMPCPLLIKRLLYYTKYVIHHAYCE! HMAVVKMASGNTQVNRIYGILVALSVTIFDLGLIVTSYIKILQAVFRLSSQNARSKALGT! CVAHVCTILAFYTPALFSFLTHRFGKNVPASIHIIFAILYLLVSPTVNPLVYGAKTKQIR! DRVVSLLFSQKQKF! >mouse:q9jmi7 Testis-expressed protein 101! MGACRIQYVLLIFLLIASRWTLVQNTYCQVSQTLSLEDDPGRTFNWTSKAEQCNPGELCQ! ETVLLIKADGTRTVVLASKSCVSQGGEAVTFIQYTAPPGLVAISYSNYCNDSLCNNKDSL! ASVWRVPETTATSNMSGTRHCPTCVALGSCSSAPSMPCANGTTQCYQGRLEFSGGGMDAT! VQVKGCTTTIGCRLMAMIDSVGPMTVKETCSYQSFLQPRKAEIGASQMPTSLWVLELLFP! LLLLPLTHFP! Tab Control-V Linux sed \t! mouse:q0vbh3!olfr629 protein! mouse:q9jmi7!testis-expressed protein 101!! ms_hm.bltab BLAST mouse human m 8 1. Query (mouse) 4. Alignment 6. Gap num. 8. Q.end 10. S.end 12. Bit-score length 2. Subject 5. Mismatches (human) 3. % identity 7. Q.start 9. S.start 11. E-value mouse:q0vbh3 human:q8nh e ! mouse:q0vbh3 human:q8ngk e ! mouse:q0vbh3 human:q9ukl e ! mouse:q0vbh3 human:q8ngj e ! mouse:q0vbh3 human:q8nh e ! mouse:q0vbh3 human:q8ngk e ! mouse:q0vbh3 human:q96rd e ! mouse:q0vbh3 human:q9h2c e ! mouse:q0vbh3 human:q8ngf e ! mouse:q0vbh3 human:q8ngh e !

6 (sort)! sort [ ] [!]!! -k FLD1,FLD2 (FLD1 FLD2! -k 2,2!!!!! Aoki S ! Hirano T ! Murton T ! Wada D ! Morino D ! Morino D ! Wada D ! Aoki S ! Hirano T ! Murton T !! -k 2,2 k 4,4nr (n) (r)! Aoki S ! Hirano T ! Murton T ! Wada D ! Morino D ! Wada D ! Morino D ! Aoki S ! Murton T ! Hirano T ! cut! cut f d [ ]!! cut f 1,2,11 ms_hs.bltab BLAST 1, 2, 11 ( E-value!! -f c cut c1-12 ms_hs.bltab 1 12

7 1. ms_hs.bltab human:q8nh57 Bit-score 12 Q8NH57.bltab! 2. E-value! grep human:q8nh57 ms_hs.bltab sort -k12,12nr > Q8NH57.bltab!! cut -f1,2,3,11 Q8NH57.bltab awk awk ' '!! { }! $1, $2,! $0 $NF awk ' '

8 awk!! awk '{print $1,$2,$11}' ms_hm.bltab!!!!! 11 (E-value) 0.001! awk '$11<0.001{print}' ms_hm.bltab!!! awk! 3 awk {sum+=$3} END{print sum}' ms_hm.bltab!! sum!! 2!! {sum+=$3}!!! sum!sum+=x sum x (sum=sum+x)!! END{print sum} END sum! BEGIN BEGIN{sum=0} {sum+=$3} END{print sum} sum 0

9 awk!,, *, /! =!! a=$1+$2 a!! +=, -=, *=, /=!! a+=($5-$4) a!! ++, --!! a++ a 1!! ==(,!=(, >, <, >=, <=!! $3== !! &&,!! a>=10 && a<20 a 10 20!! ~ / /,!~ / /!! a ~ /chr[1-3]/ a chr[1-3]!! length!! length(a) a!! awk ms_hm.bltab 3! (sum) (n) awk {a=1;b=2} ;! awk '{sum+=$3;n++} END{print sum/n}' ms_hm.bltab

10 ! Perl Ruby! 1 3 Perl (calc_mean.pl) #!/usr/bin/perl!#perl! # 1 <>! while(<>) {!!@F = += $F[2];!!# 0 3 $F[2]!!$n++;! }! #! $mean_identity = $sum / $n;! print "Mean identity: $mean_identity\n";!# \n!! ms_hm.bltab E-value 10-5! BLAST mouse:q0vbh3 human:q8nh e ! mouse:q0vbh3 human:q8ngk e ! mouse:q0vbh3 human:q9ukl e ! mouse:q0vbh3 human:q8ngj e ! mouse:q0vbh3 human:q8nh e ! mouse:q0vbh3 human:q8ngk e ! mouse:q0vbh3 human:q96rd e ! mouse:q0vbh3 human:q9h2c e ! mouse:q0vbh3 human:q e ! mouse:q0vbh3 human:q8ngg e ! mouse:q9jmi7 human:q9by e ! mouse:q9jmi7 human:q8n6q e ! mouse:q9jmi7 human:q8n6q e !

11 Perl E-value 10-5 (calc_tophit_mean.pl) #!/usr/bin/perl! $EVAL_CUTOFF = 1e-5;!!# BLAST E-value! # 1! while(<>) {!!@F = = $F[0];!!# 1!!$identity = $F[2];!!# 3!!$evalue = $F[10];!!# E-value 11!!!# E-value!!next if ($evalue > $EVAL_CUTOFF);!!!#!!!!if ($prev_query ne $query) {!!!#!!!$sum += $identity;!!!$n ++;!!}!!$prev_query = $query;!#! }! #! $mean_identity = $sum / $n;! print "Number of Hits: $n\n";! print "Mean identity: $mean_identity\n";! join! ms_hm.top.bltab mouse:q0vbh3 human:q8nh ! mouse:q9jmi7 human:q9by ! mouse:e0cxa2 human:q8iz ! mouse:q8bkx7 human:q86vk ! mouse:q3uyp3 human:q9h ! mouse.tit mouse:q0vbh3 Olfr629 protein! mouse:q9jmi7 Testis-expressed protein 101! mouse:e0cxa2 MCG21550, isoform CRA_b! mouse:q8bkx7 Zinc finger protein 410! mouse:q3uyp3 Putative uncharacterized protein! mouse:q0vbh3 human:q8nh !Olfr629 protein! mouse:q9jmi7 human:q9by !Testis-expressed protein 101! mouse:e0cxa2 human:q8iz !MCG21550, isoform CRA_b! mouse:q8bkx7 human:q86vk !Zinc finger protein 410! mouse:q3uyp3 human:q9h !Putative uncharacterized protein!

12 Perl join ms_hm.top.bltab mouse.tit join #!/usr/bin/perl!! open(f1, "mouse.tit");!!# mouse.tit! while(<f1>) {!!chomp;!!!!!!#!!($ms_name, $title) = split(/\t/);!# $ms_name, $title!!$title{$ms_name} = $title;!!# %Title! }! close(f2);!! open(f2, "ms_hm.top.bltab");!# ms_hm.top.bltab! while(<f2>) {!!chomp;!!!!#!!@f = = $F[0];!!# $ms_name!!$title = $Title{$ms_name};!!#!!print $title),"\n";!# (@F) $title! }! close(f2);! (join_title.pl)!!!! mouse:q0vbh3!olfr629 protein! mouse:q9jmi7!testis-expressed protein 101! mouse:e0cxa2!mcg21550, isoform CRA_b! Unix join join [-t Delimitor] [ 1 FLD1 2 FLD2] [ o format] file1 file2!! File1 FLD1, File2 FLD2!! Format -o 1.1, 2.2, 2.3 file1 file2

13 Unix join! ms_hm.top.bltab mouse.tit ID 1. ms_hm.top.bltab ms_hm.top.bltab.sort sort k 1,1 ms_hm.top.bltab > ms_hm.top.bltab.sort! 2. mouse.tit mouse.tit.sort sort k 1,1 mouse.tit > mouse.tit.sort! 3. ms_hm.top.bltab.sort mouse.tit.sort join t 'Tab' ms_hm.top.bltab.sort mouse.tit.sort! Tab Control+v TAB! cut! cut -d! sort ( -t! awk ( -F! join ( -t

14 Unix Unix 1. SAM 2. SAM sample.sam Hint: 7 = 3. BED cpg_pred.txt CpG island GTF chr17partial.gtf (transcript) NM_ (1) (2)! 5. GTF chr17partial.gtf (transcript) hint: sort u man sort

15 Unix 1 1. grep -v grep -v '^@' sample.sam wc! 2. SAM 7 = awk '$7=="="{print}' sample.sam wc! 3. BED awk '$5>=500{print}' cpg_pred.txt! Unix 2 4. (1)GTF NM_ awk -F'Tab' '$9~/NM_007298/ && $3=="exon"{print}' chr17partial.gtf wc Tab Control-v GTF grep 'NM_007298' chr17partial.gtf grep 'exon' wc (2) awk -F'Tab' '$9~/NM_007298/&&$3=="exon"{print}' chr17partial.gtf > tmpf awk '{sum += ($5-$4+1)} END{print sum}' tmpf (tmpf) awk awk GTF(GFF) End-Start+1! 5. GTF sort -t'tab' -u -k 9,9 chr17partial.gtf wc!

_unix_text_command.pptx

_unix_text_command.pptx Unix によるテキストファイル処理 2015/07/30 作業場所 以降の作業は 以下のディレクトリで行います ~/unix15/text/ cd コマンドを用いてディレクトリを移動し pwd コマンドを利用して カレントディレクトリが上記になっていることを確認してください 実習で使用するデータ 講習で使用するデータは以下のフォルダ内 ファイルがあることを確認してください ~/unix15/text/

More information

( ) Shift JIS ( ) ASCII ASCII ( ) 8bit = 1 Byte JIS(Japan Industrial Standard) X 0201 (X ) 2 Byte JIS ISO-2022-JP, Shift JIS, EUC 1 Byte 2 By

( ) Shift JIS ( ) ASCII ASCII ( ) 8bit = 1 Byte JIS(Japan Industrial Standard) X 0201 (X ) 2 Byte JIS ISO-2022-JP, Shift JIS, EUC 1 Byte 2 By 23 3 ( ( (binary file) UNIX CUI 3.1 = + 2 bit ) ( 3.1) bit bit 1 Byte=8 bit 1 Byte ASCII, JIS X 0201 ASCII(American Standard Code for Information Interchange) 7bit (;) (:) ( ) (") ) 7bit ( ) 24 3 3.1 (

More information

/

/ / 1 UNIX AWK( ) 1.1 AWK AWK AWK A.V.Aho P.J.Weinberger B.W.Kernighan 3 UNIX AWK GNU AWK 1 1.2 1 mkdir ~/data data ( ) cd data 1 98 MS DOS FD 1 2 AWK 2.1 AWK 1 2 1 byte.data 1 byte.data 900 0 750 11 810

More information

新たな基礎年金制度の構築に向けて

新たな基礎年金制度の構築に向けて [ ] 1 1 4 60 1 ( 1 ) 1 1 1 4 1 1 1 1 1 4 1 2 1 1 1 ( ) 2 1 1 1 1 1 1 1996 1 3 4.3(2) 1997 1 65 1 1 2 1/3 ( )2/3 1 1/3 ( ) 1 1 2 3 2 4 6 2.1 1 2 1 ( ) 13 1 1 1 1 2 2 ( ) ( ) 1 ( ) 60 1 1 2.2 (1) (3) ( 9

More information

2.4.7 \ AWK AWK......

2.4.7 \ AWK AWK...... AWK ogurisu@lagendra.s.kanazawa-u.ac.jp 2001 1 8 ( ): 1 2002 10 10 ( ): 1.1 AWK C Java AWK perl, ruby web AWK A4 A4 1 ( :p) 2 1 AWK 2 2 AWK 4 2.1 AWK............................... 5 2.2 AWK NR NF.....................................

More information

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè11²ó

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè11²ó 11 2013 6 19 11 (6/19) 6 (18:10-19:40) λ13 UNIX : 2 / 26 UNIX UNIX sort, head, tail, cat, cut diff, tee, grep, uniq, wc join, find, sed, awk, screen 3 / 26 sort sort : $ sort [options] [FILE...] options

More information

1 1 3 ABCD ABD AC BD E E BD 1 : 2 (1) AB = AD =, AB AD = (2) AE = AB + (3) A F AD AE 2 = AF = AB + AD AF AE = t AC = t AE AC FC = t = (4) ABD ABCD 1 1

1 1 3 ABCD ABD AC BD E E BD 1 : 2 (1) AB = AD =, AB AD = (2) AE = AB + (3) A F AD AE 2 = AF = AB + AD AF AE = t AC = t AE AC FC = t = (4) ABD ABCD 1 1 ABCD ABD AC BD E E BD : () AB = AD =, AB AD = () AE = AB + () A F AD AE = AF = AB + AD AF AE = t AC = t AE AC FC = t = (4) ABD ABCD AB + AD AB + 7 9 AD AB + AD AB + 9 7 4 9 AD () AB sin π = AB = ABD AD

More information

Sokushu2_perl

Sokushu2_perl hello.pl Perl print("hello, Bioinformatics!\n"); $ perl hello.pl 1 2 hello.pl print("hello, Bioinformatics!\n"); $ perl hello.pl 3 4 hello.pl 3 hello.pl Perl Perl Perl Perl print("hello, Bioinformatics!\n

More information

25 2 15 4 1 1 2 1 2.1............................. 1 2.2............................... 2 2.3.................... 5 2.4..................... 6 3 6 3.1.................................... 6 3.2..........................

More information

csj-report.pdf

csj-report.pdf 527 9 CSJ CSJ CSJ 1 8 XML CSJ XML Browser (MonoForC) CSJ 1.7 CSJ CSJ CSJ 9.1 GREP GREP Unix Windows Windows (http://www.vector.co.jp/) Trn Windows Trn > > grep *.trn 528 9 CSJ A01F0132.trn:& A01M0097.trn:&

More information

K-BASIC 1st: ユニケージ基礎編(前編)

K-BASIC 1st: ユニケージ基礎編(前編) 5 2 AWK AWK AWK 2.1 AWK AWK UNIX OS 1977 UNIX Alfred Aho Peter Weinberger Brian Kernighan 3 AWK AWK /etc/resolv.conf DNS IP 1 [hoge@lecture ~]$ cat /etc/resolv.conf awk {print $2} 2 ---------- 3 4 8.8.8.8

More information

プレゼンテーション2.ppt

プレゼンテーション2.ppt ryamasi@hgc.jp BLAST Genome browser InterProScan PSORT DBTSS Seqlogo JASPAR Melina II Panther Babelomics +@ >cdna_test CCCCTGCCCTCAACAAGATGTTTTGCCAACTGGCCAAGACCTGCCCTGTGCAGCTGTGGGTTGATTCCAC ACCCCCGCCCGGCACCCGCGTCCGCGCCATGGCCATCTACAAGCAGTCACAGCACATGACGGAGGTTGTG

More information

TC5.ids

TC5.ids % cp ~train00/.cshrc.iris ~ % cp ~train00/.alias.all ~ % exit UNIX の基本 シェルシステムとユーザの仲立ちをするプログラムであって ユーザが入力したコマンドを解釈して実行する Unix では文法によって sh 系と csh 系がある sh 系には sh, ash, zsh, bash などがある csh 系には csh, tcsh などがある

More information

UNIX

UNIX 2000 2 UNIX 2000 4 24 1 3 1.1 : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : 3 1.2 : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

More information

> >TPIS_ECOLI [P04790] "Triosephosphate isomerase (EC 5.3.1.1) (TIM) MRHPLVMGNWKLNGSRHMVHELVSNLRKELAGVAGCAVAIAPPEMYIDMAKREAEGSHIM LGAQNVDLNLSGAFTGETSA

> >TPIS_ECOLI [P04790] Triosephosphate isomerase (EC 5.3.1.1) (TIM) MRHPLVMGNWKLNGSRHMVHELVSNLRKELAGVAGCAVAIAPPEMYIDMAKREAEGSHIM LGAQNVDLNLSGAFTGETSA BLAST cd cp r /mandara/lecture/takawaba/blast. cd BLAST WEB http://isw3.naist.jp/is/kawabata-lab/lecdoc/bioinfo05/ /mandara/lecture/takawaba/bin BLAST./SETUP.cshrc.cshrc.orig_before_bioinfo06.cshrc bash

More information

BIT -2-

BIT -2- 2004.3.31 10 11 12-1- BIT -2- -3-256 258 932 524 585 -4- -5- A B A B AB A B A B C AB A B AB AB AB AB -6- -7- A B -8- -9- -10- mm -11- fax -12- -13- -14- -15- s58.10.1 1255 4.2 30.10-16- -17- -18- -19-6.12.10

More information

2001 ElispExpectPerlPythonTcl videlphiemacsbrief Visual C++Nisus Writer Jeffrey E.F. Friedl PerlPython this. this _ [...] [...] [ ] 210

2001 ElispExpectPerlPythonTcl videlphiemacsbrief Visual C++Nisus Writer Jeffrey E.F. Friedl PerlPython this. this _ [...] [...] [ ] 210 209228 2001 How to Master Regular Expression SAKAMOTO Yoshiyuki and EDO Hiroyuki Awk 209 2001 ElispExpectPerlPythonTcl videlphiemacsbrief Visual C++Nisus Writer Jeffrey E.F. Friedl PerlPython this. this

More information

Automatic Processing System on Internet Text Messages Hiroyuki EDO abd Yoshiyuki SAKAMOTO 1 Return-Path: Return- Path: RFC822: Standard f

Automatic Processing System on Internet Text Messages Hiroyuki EDO abd Yoshiyuki SAKAMOTO 1 Return-Path: Return- Path: RFC822: Standard f 163 177 2000 Automatic Processing System on Internet Text Messages Hiroyuki EDO abd Yoshiyuki SAKAMOTO 1 Return-Path: Return- Path: RFC822: Standard for ARPA Internet Text Messages 163 2000 RFC822:ARPA

More information

2002.N.x.h.L.......g9/20

2002.N.x.h.L.......g9/20 1 2 3 4 5 6 1 2 3 4 5 8 9 1 11 11 12 13 k 14 l 16 m 17 n 18 o 19 k 2 l 2 m 21 n 21 o 22 p 23 q 23 r 24 24 25 26 27 28 k 28 l 29 m 29 3 31 34 42 44 1, 8, 6, 4, 2, 1,2 1, 8 6 4 2 1, 8, 6, 4, 2, 1,2 1, 8

More information

プレゼンテーション3

プレゼンテーション3 ryamasi@hgc.jp >cdna_test CCCCTGCCCTCAACAAGATGTTTTGCCAACTGGCCAAGACCTGCCCTGTGCAGCTGTGGGTTGATTCCAC ACCCCCGCCCGGCACCCGCGTCCGCGCCATGGCCATCTACAAGCAGTCACAGCACATGACGGAGGTTGTG AGGCGCTGCCCCCACCATGAGCGCTGCTCAGATAGCGATGGTCTGGCCCCTCCTCAGCATCTTATCCGAG

More information

T T T T A 0 1 A 1 A P (A 1 ) = C 1 6 C 8C 3 = 15 8, P (A ) = C 6 C 1 8C 3 = 3 8 T 5 B P (A 1 B) = =

T T T T A 0 1 A 1 A P (A 1 ) = C 1 6 C 8C 3 = 15 8, P (A ) = C 6 C 1 8C 3 = 3 8 T 5 B P (A 1 B) = = 4 1.. 3. 4. 1. 1 3 4 5 6 1 3 4 5 6. 1 1 1 A B P (A B) = P (A) + P (B) P (C) = P (A) P (B) 3. 1 1 P (A) = 1 P (A) A A 4. A B P A (B) = n(a B) n(a) = P (A B) P (A) 50 015 016 018 1 4 5 8 8 3 T 1 3 1 T T

More information

TEX American Mathematical Society PostScript Adobe Systems Incorporated

TEX American Mathematical Society PostScript Adobe Systems Incorporated P A D manual ( pad2ps 3.1j ) (seiichi@muraoka.info.waseda.ac.jp) 1996 11 2 TEX American Mathematical Society PostScript Adobe Systems Incorporated pad2ps PAD PAD (Problem Analysis Diagram) C 1 2 PAD PAD

More information

Networking Semester 802.3

Networking Semester 802.3 Networking Semester 802.3 2 ) ( Computer Hardware () () () () () () () () ()- () () () () () BIOS () Computer Software Operating Systems Windows, Linux Linux Windows OS I 1.C 2. 3. 3-1.main 3-2.printf

More information

Windows Cygwin Mac *1 Emacs Ruby ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2

Windows Cygwin Mac *1 Emacs Ruby ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2 September 2016 1 Windows Cygwin Mac *1 Emacs Ruby 1 1.1 ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2 ~/16:00:20> ls 2 2 ls ls -a ~/16:00:20> ls -a

More information

1 2 3 4 5 6 X Y ABC A ABC B 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 13 18 30 P331 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 ( ) 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

More information

26 2 3 4 5 8 9 6 7 2 3 4 5 2 6 7 3 8 9 3 0 4 2 4 3 4 4 5 6 5 7 6 2 2 A B C ABC 8 9 6 3 3 4 4 20 2 6 2 2 3 3 4 4 5 5 22 6 6 7 7 23 6 2 2 3 3 4 4 24 2 2 3 3 4 4 25 6 2 2 3 3 4 4 26 2 2 3 3 27 6 4 4 5 5

More information

mogiJugyo_slide_full.dvi

mogiJugyo_slide_full.dvi a 2 + b 2 = c 2 (a, b, c) a 2 a 2 = a a a 1/ 78 2/ 78 3/ 78 4/ 78 180 5/ 78 http://www.kaijo.ed.jp/ 6/ 78 a, b, c ABC C a b B c A C 90 a 2 + b 2 = c 2 7/ 78 C a b a 2 +b 2 = c 2 B c A a 2 a a 2 = a a 8/

More information

2002 awk Aho,Weinberger,Kernighan DFA awk Brian Kernighan DFA GNU awk Arnold Robbins DFA NFA MKS awk Mortice Kern Systems POSIX NFA mawk Mike Brennan

2002 awk Aho,Weinberger,Kernighan DFA awk Brian Kernighan DFA GNU awk Arnold Robbins DFA NFA MKS awk Mortice Kern Systems POSIX NFA mawk Mike Brennan 153 167 2002 Processing Mechanism on Regular Expressions Yoshiyuki SAKAMOTO and Hiroyuki EDO awk NFA DFA DFANFA POSIX NFA DFA NFA NFA NFATcl, Perl, Python, GNU Emacs, ed, sed, vi, grep egrep, awk DFA egrep,

More information

EPSON VP-1200 取扱説明書

EPSON VP-1200 取扱説明書 4020178-01 w p s 2 p 3 4 5 6 7 8 p s s s p 9 p A B p C 10 D p E 11 F G H H 12 p G I s 13 p s A D p B 14 C D E 15 F s p G 16 A B p 17 18 s p s 19 p 20 21 22 A B 23 A B C 24 A B 25 26 p s p s 27 28 p s p

More information

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè3²ó

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè3²ó 3 2011 5 25 :gnuplot 2 / 26 : 3 / 26 web server accesslog mail log syslog firewall log IDS log 4 / 26 : ( ) 5 / 26 ( ) 6 / 26 (syslog API ) RRD (Round Robin Database) : 5 1 2 1 1 1 web 7 / 26 web server

More information

sed, awk 生物学で公開されるデータの形式の多くがascii text fasta, fastq, sam, bed, wig, その他独自の形式,... プログラムの入力や出力を整形する作業が生じる パールのようなもの に頼る Perl, Python, Ruby,... ( 小さな )gl

sed, awk 生物学で公開されるデータの形式の多くがascii text fasta, fastq, sam, bed, wig, その他独自の形式,... プログラムの入力や出力を整形する作業が生じる パールのようなもの に頼る Perl, Python, Ruby,... ( 小さな )gl 生物情報科学演習森下研 M1 鈴木裕太 sed, awk 生物学で公開されるデータの形式の多くがascii text fasta, fastq, sam, bed, wig, その他独自の形式,... プログラムの入力や出力を整形する作業が生じる パールのようなもの に頼る Perl, Python, Ruby,... ( 小さな )glue 言語としての sed, awk, bash 仮説を立てる

More information

NEEDS Yahoo! Finance Yahoo! NEEDS MT EDINET XBRL Magnetic Tape NEEDS MT Mac OS X Server, Linux, Windows Operating System: OS MySQL Web Apache MySQL PHP Web ODBC MT Web ODBC LAMP ODBC NEEDS MT PHP: Hypertext

More information

N N 1,, N 2 N N N N N 1,, N 2 N N N N N 1,, N 2 N N N 8 1 6 3 5 7 4 9 2 1 12 13 8 15 6 3 10 4 9 16 5 14 7 2 11 7 11 23 5 19 3 20 9 12 21 14 22 1 18 10 16 8 15 24 2 25 4 17 6 13 8 1 6 3 5 7 4 9 2 1 12 13

More information

... 1... 2... 2... 3... 3... 4... 4... 5... 6 (a) 20... 6 (b) 10... 7 (c) 10... 8 (d) 24... 8 (e) 7... 9 (f) 7... 10... 10 (a) 12... 10 (b) 34... 11..

... 1... 2... 2... 3... 3... 4... 4... 5... 6 (a) 20... 6 (b) 10... 7 (c) 10... 8 (d) 24... 8 (e) 7... 9 (f) 7... 10... 10 (a) 12... 10 (b) 34... 11.. ... 1... 2... 2... 3... 3... 4... 4... 5... 6 (a) 20... 6 (b) 10... 7 (c) 10... 8 (d) 24... 8 (e) 7... 9 (f) 7... 10... 10 (a) 12... 10 (b) 34... 11... 13 (a) 7... 13 (b) 8... 14 (c) 19... 14... 16...

More information

1 (1) vs. (2) (2) (a)(c) (a) (b) (c) 31 2 (a) (b) (c) LENCHAR

1 (1) vs. (2) (2) (a)(c) (a) (b) (c) 31 2 (a) (b) (c) LENCHAR () 601 1 () 265 OK 36.11.16 20 604 266 601 30.4.5 (1) 91621 3037 (2) 20-12.2 20-13 (3) ex. 2540-64 - LENCHAR 1 (1) vs. (2) (2) 605 50.2.13 41.4.27 10 10 40.3.17 (a)(c) 2 1 10 (a) (b) (c) 31 2 (a) (b) (c)

More information

untitled

untitled 70.0 60.0 50.0 40.0 30.0 20.0 10.0 0.0 18.5 18 60.4 6.3 45.5 18.9 41.8 5.0 29.3 17.1 1.2 3.7 0.0 0.0 1.5 19 20 21 22 2.50 2.00 1.50 1.00 0.50 0.00 19 2.38 1.48 1.02 2.05 0.11 0.00 0.00 20 21 1.22 0.44

More information

P.1 P.2 P.3 P.6 P.13 P.14 P.17 P P.21

P.1 P.2 P.3 P.6 P.13 P.14 P.17 P P.21 2020 P.1 P.2 P.3 P.6 P.13 P.14 P.17 P.19 2020 P.21 32 7 1 24 () 1 ( 23 78 ) 31 ( ) ( 23 98) () 2 2 ( 24 24) () 3 15 2 3 2 4 5 6 ( 10 13 12 19 24 24) () 4 2 ( 24 24) () 5 2 3 ( 24 24) () 6 ( 24 24) ()

More information

A

A A 3 2017 4 24 1 1 1.1.......................................... 1 1.2................................ 1 1.2.1................................ 1 1.2.2............................. 1 1.2.3................................

More information

Bayonを使って 登録タグでニコマス分類

Bayonを使って 登録タグでニコマス分類 データクラスタリング bayon というツールを使って 登録タグの情報から動画をグループ化する ( データクラスタリング ) 動画 ID を元に同じグループの動画を検索できるようにする 代表的な登録タグについて グループ化された動画を検索できるようにする CentOS5 をインストールした PC 本体が用意できなければ VMware Player 等を利用 文字コードは UTF-8N(BOM なし

More information

橡Taro9-生徒の活動.PDF

橡Taro9-生徒の活動.PDF 3 1 4 1 20 30 2 2 3-1- 1 2-2- -3- 18 1200 1 4-4- -5- 15 5 25 5-6- 1 4 2 1 10 20 2 3-7- 1 2 3 150 431 338-8- 2 3 100 4 5 6 7 1-9- 1291-10 - -11 - 10 1 35 2 3 1866 68 4 1871 1873 5 6-12 - 1 2 3 4 1 4-13

More information

進展するコーポレート・ガバナンス改革と日本企業の再生

進展するコーポレート・ガバナンス改革と日本企業の再生 2 (1) 1990 (2) 90 (3) 80 90 (4) 90 3 ) ) (1) (2) ( ) (3) ( ) 3 3 ) () ( ) ( ) ) ) ( ( ) / arm length relationship ( ) 1 3 1998 (1999 3 ) 98 5-1 1 3 2 59.7( 15.8) 26 6.0 2 ( 9.4) 3 3.0 3 4 1 8.6 19.0( 16.5)

More information

4 2018 5 1 1 1 1.1.............................. 1 1.1.1....................... 1 1.1.2.................... 1 1.2...................... 1 1.2.1........................... 1 1.2.2............................

More information

cover-1

cover-1 BMP 21-LAB BRADY Worldwide, Inc. BRADY BRADY BRADY BMP 21-LAB BRADY, Inc. Worldwide Microsoft Windows Microsoft Corporation BRADY 2013 BRADY Worldwide, Inc. All Rights Reserved 2014 1 Firmware 1 Brady

More information

c 2017

c 2017 CzeekS ver. 1.2 c 2017 ver. 1.2 Dragon7 shrink learn status 1 1 2 CzeekS 3 2.1................... 3 2.2................................... 4 2.3................................... 4 2.4 OpenBabel..................................

More information

リスト 1 1 <HTML> <HEAD> 3 <META http-equiv="content-type" content="text/html; charset=euc-jp"> 4 <TITLE> 住所の検索 </TITLE> 5 </HEAD> 6 <BODY> <FORM method=

リスト 1 1 <HTML> <HEAD> 3 <META http-equiv=content-type content=text/html; charset=euc-jp> 4 <TITLE> 住所の検索 </TITLE> 5 </HEAD> 6 <BODY> <FORM method= 第 4 章 セキュア Perl プログラミング [4-3.] Perl の Taint モード ( 汚染検出モード ) Perl のエンジンには Taint モード ( 汚染検出モード ) というものがある このモードで動作する Perl エンジンは, 外部から与えられた警戒すべきデータを汚染データとしてマーキングし, それが処理の過程でどの変数に伝搬していくかを追跡してくれる これは, セキュア

More information

ver.5.3web

ver.5.3web 22 JSBi -1- 1 1 2 3 4 2 1 2 3 4 3 1 2 3 4-2- 4 1 2 1/4 3 4 5 AB AB 1 A B 2 B AB 3 A B AB 4 O A B AB -3- 6 A a AA aa 1 A a 2 Aa 3 AA 4 3 1 7 1 RNA 2 3 TATA 4 RNA mrna UTR -4- 8 RNA (a) (d) (a) DNA (b) (c)

More information

LAN

LAN HUB 1090248 21 3 19 1 1 2 3 2.1...................................... 3 2.1.1................................ 4 2.1.2 LAN................................. 6 2.2................................... 8 3 12

More information

0 (18) /12/13 (19) n Z (n Z ) 5 30 (5 30 ) (mod 5) (20) ( ) (12, 8) = 4

0   (18) /12/13 (19) n Z (n Z ) 5 30 (5 30 ) (mod 5) (20) ( ) (12, 8) = 4 0 http://homepage3.nifty.com/yakuikei (18) 1 99 3 2014/12/13 (19) 1 100 3 n Z (n Z ) 5 30 (5 30 ) 37 22 (mod 5) (20) 201 300 3 (37 22 5 ) (12, 8) = 4 (21) 16! 2 (12 8 4) (22) (3 n )! 3 (23) 100! 0 1 (1)

More information

- 1 - - 0.5%5 10 10 5 10 1 5 1

- 1 - - 0.5%5 10 10 5 10 1 5 1 - - - 1 - - 0.5%5 10 10 5 10 1 5 1 - 2 - - - - A B A A A B A B B A - 3 - - 100 100 100 - A) ( ) B) A) A B A B 110 A B 13 - 4 - A) 36 - - - 5 - - 1 - 6-1 - 7 - - 8 - Q.15 0% 10% 20% 30% 40% 50% 60% 70%

More information

</ul> (XXX ) 15 ( )15 35 (XXX ) 15 ( ) [4] HTML HTML HTML HTML 1. <!--- CONTENTS_TITLE_TABLE ---> <b><font size=+1>xxx </font></b> <sm

</ul> (XXX ) 15 ( )15 35 (XXX ) 15 ( ) [4] HTML HTML HTML HTML 1. <!--- CONTENTS_TITLE_TABLE ---> <b><font size=+1>xxx </font></b> <sm 1. 1 2006 9 5 AWK HTML 2 1 [4] AWK Yahoo! : http://headlines.yahoo.co.jp/hl HTML HTML [4] HTML HTML ( ) HTML 3 2 Yahoo! Yahoo! ( ) (XXX ) - 15 ( )15 35

More information

Bioinformatics2

Bioinformatics2 バイオインフォマティクス配列データ解析 2 藤 博幸 データベース検索 (1) ブラウザで NCBI を検索 (2)NCBI で配列データの取得 (3)NCBI で BLAST 検索 ブラウザで NCBI を検索 ブラウザで NCBI を検索 クリック ブラウザで NCBI を検索 NCBI トップページ National Center for Biotechnology Information 分

More information

ネットショップ・オーナー2 ユーザーマニュアル

ネットショップ・オーナー2  ユーザーマニュアル 1 1-1 1-2 1-3 1-4 1 1-5 2 2-1 A C 2-2 A 2 C D E F G H I 2-3 2-4 2 C D E E A 3 3-1 A 3 A A 3 3 3 3-2 3-3 3-4 3 C 4 4-1 A A 4 B B C D C D E F G 4 H I J K L 4-2 4 C D E B D C A C B D 4 E F B E C 4-3 4

More information

EPSON エプソンプリンタ共通 取扱説明書 ネットワーク編

EPSON エプソンプリンタ共通 取扱説明書 ネットワーク編 K L N K N N N N N N N N N N N N L A B C N N N A AB B C L D N N N N N L N N N A L B N N A B C N L N N N N L N A B C D N N A L N A L B C D N L N A L N B C N N D E F N K G H N A B C A L N N N N D D

More information

ありがとうございました

ありがとうございました - 1 - - 2 - - 3 - - 4 - - 5 - 1 2 AB C A B C - 6 - - 7 - - 8 - 10 1 3 1 10 400 8 9-9 - 2600 1 119 26.44 63 50 15 325.37 131.99 457.36-10 - 5 977 1688 1805 200 7 80-11 - - 12 - - 13 - - 14 - 2-1 - 15 -

More information

EPSON エプソンプリンタ共通 取扱説明書 ネットワーク編

EPSON エプソンプリンタ共通 取扱説明書 ネットワーク編 K L N K N N N N N N N N N N N N L A B C N N N A AB B C L D N N N N N L N N N A L B N N A B C N L N N N N L N A B C D N N A L N A L B C D N L N A L N B C N N D E F N K G H N A B C A L N N N N D D

More information

公務員人件費のシミュレーション分析

公務員人件費のシミュレーション分析 47 50 (a) (b) (c) (7) 11 10 2018 20 2028 16 17 18 19 20 21 22 20 90.1 9.9 20 87.2 12.8 2018 10 17 6.916.0 7.87.4 40.511.6 23 0.0% 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2.0% 4.0% 6.0% 8.0%

More information

Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q4 A B (A/B) 1 1,185 17,801 6.66% 2 943 26,598 3.55% 3 3,779 112,231 3.37% 4 8,174 246,350 3.32% 5 671 22,775 2.95% 6 2,606 89,705 2.91% 7 738 25,700 2.87% 8 1,134

More information

橡hashik-f.PDF

橡hashik-f.PDF 1 1 1 11 12 13 2 2 21 22 3 3 3 4 4 8 22 10 23 10 11 11 24 12 12 13 25 14 15 16 18 19 20 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 144 142 140 140 29.7 70.0 0.7 22.1 16.4 13.6 9.3 5.0 2.9 0.0

More information

198

198 197 198 199 200 201 202 A B C D E F G H I J K L 203 204 205 A B 206 A B C D E F 207 208 209 210 211 212 213 214 215 A B 216 217 218 219 220 221 222 223 224 225 226 227 228 229 A B C D 230 231 232 233 A

More information

1

1 1 2 3 4 5 (2,433 ) 4,026 2710 243.3 2728 402.6 6 402.6 402.6 243.3 7 8 20.5 11.5 1.51 0.50.5 1.5 9 10 11 12 13 100 99 4 97 14 A AB A 12 14.615/100 1.096/1000 B B 1.096/1000 300 A1.5 B1.25 24 4,182,500

More information

05[ ]戸田(責)村.indd

05[ ]戸田(責)村.indd 147 2 62 4 3.2.1.16 3.2.1.17 148 63 1 3.2.1.F 3.2.1.H 3.1.1.77 1.5.13 1 3.1.1.05 2 3 4 3.2.1.20 3.2.1.22 3.2.1.24 3.2.1.D 3.2.1.E 3.2.1.18 3.2.1.19 2 149 3.2.1.23 3.2.1.G 3.1.1.77 3.2.1.16 570 565 1 2

More information

/9/ ) 1) 1 2 2) 4) ) ) 2x + y 42x + y + 1) 4) : 6 = x 5) : x 2) x ) x 2 8x + 10 = 0

/9/ ) 1) 1 2 2) 4) ) ) 2x + y 42x + y + 1) 4) : 6 = x 5) : x 2) x ) x 2 8x + 10 = 0 1. 2018/9/ ) 1) 8 9) 2) 6 14) + 14 ) 1 4 8a 8b) 2 a + b) 4) 2 : 7 = x 8) : x ) x ) + 1 2 ) + 2 6) x + 1)x + ) 15 2. 2018/9/ ) 1) 1 2 2) 4) 2 + 6 5) ) 2x + y 42x + y + 1) 4) : 6 = x 5) : x 2) x 2 15 12

More information

AC-2

AC-2 AC-1 AC-2 AC-3 AC-4 AC-5 AC-6 AC-7 AC-8 AC-9 * * * AC-10 AC-11 AC-12 AC-13 AC-14 AC-15 AC-16 AC-17 AC-18 AC-19 AC-20 AC-21 AC-22 AC-23 AC-24 AC-25 AC-26 AC-27 AC-28 AC-29 AC-30 AC-31 AC-32 * * * * AC-33

More information

エンジョイ北スポーツ

エンジョイ北スポーツ 28 3 20 85132 http://www.kita-city-taikyo.or.jp 85 63 27 27 85132 http://www.kita-city-taikyo.or.jp 2 2 3 4 4 3 6 78 27, http://www.kita-city-taikyo.or.jp 85132 3 35 11 8 52 11 8 2 3 4 1 2 4 4 5 4 6 8

More information

オンラインマニュアル

オンラインマニュアル 1 2 3 4 5 6 7 8 9 10 11 12 14 15 16 17 18 ENTER ENTER 20 F12 ENTER ENTER 21 FN F8 FN F8 22 FN F3 23 FN F4 24 25 26 27 28 FN F9 FN F9 FN F9 FN F9 FN F9 29 30 31 SHIFT SHIFT FN 32 33 FN FN ESC FN SPACE

More information

04年度LS民法Ⅰ教材改訂版.PDF

04年度LS民法Ⅰ教材改訂版.PDF ?? A AB A B C AB A B A B A B A A B A 98 A B A B A B A B B A A B AB AB A B A BB A B A B A B A B A B A AB A B B A B AB A A C AB A C A A B A B B A B A B B A B A B B A B A B A B A B A B A B A B

More information

¥¢¥ë¥´¥ê¥º¥à¥¤¥ó¥È¥í¥À¥¯¥·¥ç¥ó ÎØ¹Ö #1

¥¢¥ë¥´¥ê¥º¥à¥¤¥ó¥È¥í¥À¥¯¥·¥ç¥ó ÎØ¹Ö #1 #1 id:motemen August 27, 2008 id:motemen 1-3 1-5 6-9 10-14 1 2 : n < a 1, a 2,..., a n > a 1 a 2 a n < a 1, a 2,..., a n > : Google: insertion sort site:youtube.com 1 : procedure Insertion-Sort(A) for

More information

( ) 1 Windows HTML ( ) ( ) ( ) WWW 10 ( )

( ) 1 Windows HTML ( ) ( ) ( ) WWW 10 ( ) ( ) 1 Windows HTML ( ) ( ) ( ) 1. 2. 3. 4. WWW 10 ( ) 2 1. 2. 1 3. ( ) 4. 5. 3 Windows 2 7 8 MS Word MS Excel 1. MS Word 600 2. MS Excel 1 34 2 83 3 23 4 70 5 100 6 45 7 58 8 29 9 68 10 72 11 37 12 12

More information

(1) x 4.0 m/s x x=0 t=0 t=8.0 s 12 m/s x t=0 t v t v v-t x x=0 t x x=0 t=8.0 s x x =0 m (2) F k2 Q1, Q2 2 r F= Vt Vq I I= (1)

(1) x 4.0 m/s x x=0 t=0 t=8.0 s 12 m/s x t=0 t v t v v-t x x=0 t x x=0 t=8.0 s x x =0 m (2) F k2 Q1, Q2 2 r F= Vt Vq I I= (1) 2/ 土 28 5 7 10:30 11:20 似通った科目名がありますので注意してください. 受験許可されていない科目を解答した場合は無効 整理番号と科目コードは受験許可証とよく照合し正確に記入 30 10 11 12 01101 02607 02703 (1) x 4.0 m/s x x=0 t=0 t=8.0 s 12 m/s x t=0 t v t v v-t x x=0 t x x=0 t=8.0

More information

BioRuby Ruby Bioinfomatics Blast BioPerl, BioJava, BIoPython Ruby

BioRuby Ruby Bioinfomatics Blast BioPerl, BioJava, BIoPython Ruby BioRuby, BioRuby Ruby Bioinfomatics Blast BioPerl, BioJava, BIoPython Ruby Open Bio* O B F -- Open Bio Foundation BioRuby Ensembl BioCaml BioPerl OmniGene BioLisp BioPython GMOD BioConductor BioJava Apollo

More information

(1) (2) (1) (2) 2 3 {a n } a 2 + a 4 + a a n S n S n = n = S n

(1) (2) (1) (2) 2 3 {a n } a 2 + a 4 + a a n S n S n = n = S n . 99 () 0 0 0 () 0 00 0 350 300 () 5 0 () 3 {a n } a + a 4 + a 6 + + a 40 30 53 47 77 95 30 83 4 n S n S n = n = S n 303 9 k d 9 45 k =, d = 99 a d n a n d n a n = a + (n )d a n a n S n S n = n(a + a n

More information

48 * *2

48 * *2 374-1- 17 2 1 1 B A C A C 48 *2 49-2- 2 176 176 *2 -3- B A A B B C A B A C 1 B C B C 2 B C 94 2 B C 3 1 6 2 8 1 177 C B C C C A D A A B A 7 B C C A 3 C A 187 187 C B 10 AC 187-4- 10 C C B B B B A B 2 BC

More information

untitled

untitled 186 17 100160250 1 10.1 55 2 18.5 6.9 100 38 17 3.2 17 8.4 45 3.9 53 1.6 22 7.3 100 2.3 31 3.4 47 OR OR 3 1.20.76 63.4 2.16 4 38,937101,118 17 17 17 5 1,765 1,424 854 794 108 839 628 173 389 339 57 6 18613

More information

untitled

untitled 1. 3 14 2. 1 12 9 7.1 3. 5 10 17 8 5500 4. 6 11 5. 1 12 101977 1 21 45.31982.9.4 79.71996 / 1997 89.21983 41.01902 6. 7 5 10 2004 30 16.8 37.5 3.3 2004 10.0 7.5 37.0 2004 8. 2 7 9. 6 11 46 37 25 55 10.

More information

LiveCode初心者開発入門サンプル

LiveCode初心者開発入門サンプル / About LiveCode 01:... 11 02: Create... 15 set 03:... 21 name title LiveCode 04:... 29 global local width height 05:... 37 Controls Tools Palette Script Editor message handler 06:... 52 RGB 07:... 63

More information

MQTT V3.1 プロトコル仕様

MQTT V3.1 プロトコル仕様 1999 d digit = X MOD 128 X = X DIV 128 // if there are mre digits t encde, set the tp bit f this digit if ( X > 0 ) digit = digit OR 0x80 endif 'utput' digit while ( X> 0 ) multiplier = 1 value = 0

More information

ソフトウェア基礎 Ⅰ Report#2 提出日 : 2009 年 8 月 11 日 所属 : 工学部情報工学科 学籍番号 : K 氏名 : 當銘孔太

ソフトウェア基礎 Ⅰ Report#2 提出日 : 2009 年 8 月 11 日 所属 : 工学部情報工学科 学籍番号 : K 氏名 : 當銘孔太 ソフトウェア基礎 Ⅰ Report#2 提出日 : 2009 年 8 月 11 日 所属 : 工学部情報工学科 学籍番号 : 095739 K 氏名 : 當銘孔太 1. UNIX における正規表現とは何か, 使い方の例を挙げて説明しなさい. 1.1 正規表現とは? 正規表現 ( 正則表現ともいう ) とは ある規則に基づいて文字列 ( 記号列 ) の集合を表す方法の 1 つです ファイル名表示で使うワイルドカードも正規表現の兄弟みたいなもの

More information