-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex14.html
1067 lines (1021 loc) · 47.6 KB
/
index14.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PGM=ICET00L</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="mainframer">
<!-- Le styles -->
<link rel="stylesheet" href="http://mainframer.github.io/theme/css/bootstrap.min.css" type="text/css" />
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
.tag-1 {
font-size: 13pt;
}
.tag-2 {
font-size: 10pt;
}
.tag-2 {
font-size: 8pt;
}
.tag-4 {
font-size: 6pt;
}
</style>
<link href="http://mainframer.github.io/theme/css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="http://mainframer.github.io/theme/css/font-awesome.css" rel="stylesheet">
<link href="http://mainframer.github.io/theme/css/pygments.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="http://mainframer.github.io/theme/images/favicon.ico">
<link rel="apple-touch-icon" href="http://mainframer.github.io/theme/images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="http://mainframer.github.io/theme/images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="http://mainframer.github.io/theme/images/apple-touch-icon-114x114.png">
<link href="http://mainframer.github.io/" type="application/atom+xml" rel="alternate" title="PGM=ICET00L ATOM Feed" />
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="http://mainframer.github.io/index.html">PGM=ICET00L </a>
<div class="nav-collapse">
<ul class="nav">
<li class="divider-vertical"></li>
<li >
<a href="http://mainframer.github.io/category/automation.html">
<i class="icon-folder-open icon-large"></i>Automation
</a>
</li>
<li >
<a href="http://mainframer.github.io/category/chi-xu-ji-cheng.html">
<i class="icon-folder-open icon-large"></i>持续集成
</a>
</li>
<li >
<a href="http://mainframer.github.io/category/ibm-rational.html">
<i class="icon-folder-open icon-large"></i>IBM Rational
</a>
</li>
<li >
<a href="http://mainframer.github.io/category/linuxunixuss.html">
<i class="icon-folder-open icon-large"></i>Linux/Unix/USS
</a>
</li>
<li >
<a href="http://mainframer.github.io/category/mainframe.html">
<i class="icon-folder-open icon-large"></i>Mainframe
</a>
</li>
<li >
<a href="http://mainframer.github.io/category/others.html">
<i class="icon-folder-open icon-large"></i>Others
</a>
</li>
<li >
<a href="http://mainframer.github.io/category/pa-chong.html">
<i class="icon-folder-open icon-large"></i>爬虫
</a>
</li>
<li >
<a href="http://mainframer.github.io/category/python.html">
<i class="icon-folder-open icon-large"></i>Python
</a>
</li>
<li >
<a href="http://mainframer.github.io/category/rexx.html">
<i class="icon-folder-open icon-large"></i>Rexx
</a>
</li>
<li >
<a href="http://mainframer.github.io/category/ruby.html">
<i class="icon-folder-open icon-large"></i>Ruby
</a>
</li>
<ul class="nav pull-right">
<li><a href="http://mainframer.github.io/archives.html"><i class="icon-th-list"></i>Archives</a></li>
</ul>
</ul>
<!--<p class="navbar-text pull-right">Logged in as <a href="#">username</a></p>-->
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="span9" id="content">
<div class="article">
<h1><a href="http://mainframer.github.io/articles/如何提交网站到Alexa.html">如何提交网站到Alexa</a></h1>
<div class="well small"><footer class="post-info">
<span class="label">Date</span>
<abbr class="published" title="2011-08-03T00:00:00">
<i class="icon-calendar"></i>2011-08-03
</abbr>
<span class="label">By</span>
<a href="http://mainframer.github.io/author/mainframer.html"><i class="icon-user"></i>mainframer</a>
<span class="label">Category</span>
<a href="http://mainframer.github.io/category/others.html"><i class="icon-folder-open"></i>Others</a>.
<span class="label">Tags</span>
<a href="http://mainframer.github.io/tag/ti-jiao-alexa.html"><i class="icon-tag"></i>提交Alexa</a>
</footer><!-- /.post-info --></div>
<div class="summary"><p>大家都知道网站的Alexa全球排名是一项权威的数据,那么如何将自己的网站信息提交到Alexa呢?<br />
<strong>1、</strong>登陆Alexa主页<a href="http://www.alexa.com/">http://www.alexa.com/</a>点击右上角的<code>Register</code>注册一个自己的账号。<br />
<strong>2、</strong>注册好之后登陆,点击<code>Your Site</code>(你的站点),提示你没有申明过任何站点。这时点击<code>“Add a site now”</code>来添加你的站点。<br />
<img alt="1" src="./../images/alexa_01.jpg" /> </p>
<p><strong>3、</strong>在输入框中输入你的站点名称,比如我的就输入:<a href="http://flyuphigh.com">http://flyuphigh.com</a>然后点击<code>"Claim your site"</code>来声明你的站点。<br />
<img alt="1" src="./../images/alexa_02.jpg" /> </p>
<p><strong>4、</strong>Alexa需要验证你对输入的站点确实有所有权,不然你随便瞎输网址了都可以了。右击<code>“this file”</code>,把此验证文件下载到本地,然后通过FTP传到你网站的根目录下。比如我的话上传完之后就是<code>flyuphigh.com/BTcj7U4QWU9rex4HiGWNv5rF7IY.html</code>S,上传完点击看看有没有 ...</p>
<a class="btn primary xsmall" href="http://mainframer.github.io/articles/如何提交网站到Alexa.html">more ...</a>
</div>
</div>
<hr />
<div class="article">
<h1><a href="http://mainframer.github.io/articles/非常好的学英语的网站.html">非常好的学英语的网站</a></h1>
<div class="well small"><footer class="post-info">
<span class="label">Date</span>
<abbr class="published" title="2011-08-03T00:00:00">
<i class="icon-calendar"></i>2011-08-03
</abbr>
<span class="label">By</span>
<a href="http://mainframer.github.io/author/mainframer.html"><i class="icon-user"></i>mainframer</a>
<span class="label">Category</span>
<a href="http://mainframer.github.io/category/others.html"><i class="icon-folder-open"></i>Others</a>.
<span class="label">Tags</span>
<a href="http://mainframer.github.io/tag/xue-ying-yu-wang-zhan.html"><i class="icon-tag"></i>学英语网站</a>
</footer><!-- /.post-info --></div>
<div class="summary"><p>在国内,我认为最好的学英语的方式就是看英语视频,今天来推荐几个我觉得很不错的网站! </p>
<h5>1、爱布谷CCTV-NEWS</h5>
<p>这个是中国网络电视CNTV,上面有丰富的节目资源,网址是<a href="http://bugu.cntv.cn">爱布谷CNTV</a>。需要学英语的话可以看<a href="http://bugu.cntv.cn/live_channelcctv_news/index.shtml">CCTV-NEWS</a>。不得不说这里面有很多不错的节目,比如海客谈(crossover),China24和Asia Today,Culture Express,Biz Talk,还有很多不错的主持人,比如邹悦,季小军,杨锐,田薇,爱华,James Chau,芮成钢等等。从我去年底开始看到现在,我是感觉到这个网站在不断的提升档次的,感觉得到大家都很用心在做节目,是不错的学习英语的途径之一。</p>
<h5>2、网易公开课</h5>
<p>不得不说,网易公开课是我今年发现的少数好网站之一,网址是<a href="http://v.163.com/open">网易公开课</a>。这个网站几乎手机了现在世界名校的主流课程,有哈佛,牛津,斯坦福,耶鲁等等,课程涵盖范围也是非常的广,包括计算机领域,伦理心理学领域,医学建筑学领域,法律领域,经济金融等等 ...</p>
<a class="btn primary xsmall" href="http://mainframer.github.io/articles/非常好的学英语的网站.html">more ...</a>
</div>
</div>
<hr />
<div class="article">
<h1><a href="http://mainframer.github.io/articles/Linux+ssh+chrome(chromium)+proxy switchy + gSTM翻墙.html">Linux+ssh+chrome(chromium)+proxy switchy + gSTM翻墙</a></h1>
<div class="well small"><footer class="post-info">
<span class="label">Date</span>
<abbr class="published" title="2011-08-01T00:00:00">
<i class="icon-calendar"></i>2011-08-01
</abbr>
<span class="label">By</span>
<a href="http://mainframer.github.io/author/mainframer.html"><i class="icon-user"></i>mainframer</a>
<span class="label">Category</span>
<a href="http://mainframer.github.io/category/others.html"><i class="icon-folder-open"></i>Others</a>.
<span class="label">Tags</span>
<a href="http://mainframer.github.io/tag/gstm.html"><i class="icon-tag"></i>gSTM</a>
<a href="http://mainframer.github.io/tag/ssh.html"><i class="icon-tag"></i>ssh</a>
<a href="http://mainframer.github.io/tag/proxy-switchy.html"><i class="icon-tag"></i>proxy switchy</a>
<a href="http://mainframer.github.io/tag/fan-qiang.html"><i class="icon-tag"></i>翻墙</a>
</footer><!-- /.post-info --></div>
<div class="summary"><p>上一篇讲到的是windows下的利用<code>ssh+chrome(chromium)+proxy switchy + Myentunnel</code>翻墙,其实在linux下和windows下没什么区别,都是用ssh代理,只是利用的客户端软件不一样而已。windows下用Myentunnel,linux下我们一般用<code>gSTM</code>。 </p>
<p>gSTM (Gnome SSH Tunnel Manager) 是一款图形化的 SSH 隧道端口重定向管理工具 点击<a href="http://sourceforge.net/projects/gstm/files">这里</a>下载后安装,设置和之前讲得Myentunnel差不多.也是必填的几个:<code>SSH服务器地址</code>,<code>SSH用户名</code>,<code>SSH密码</code>,<code>SSH端口3022</code>,<code>本地端口7070</code>。
Proxy switchy的设置请参照我的另一篇文章 <<ssh+myEntunnel+chrome+proxy switchy翻墙>></p>
<a class="btn primary xsmall" href="http://mainframer.github.io/articles/Linux+ssh+chrome(chromium)+proxy switchy + gSTM翻墙.html">more ...</a>
</div>
</div>
<hr />
<div class="article">
<h1><a href="http://mainframer.github.io/articles/ssh+myEntunnel+chrome+proxy switchy翻墙.html">ssh+myEntunnel+chrome+proxy switchy翻墙</a></h1>
<div class="well small"><footer class="post-info">
<span class="label">Date</span>
<abbr class="published" title="2011-08-01T00:00:00">
<i class="icon-calendar"></i>2011-08-01
</abbr>
<span class="label">By</span>
<a href="http://mainframer.github.io/author/mainframer.html"><i class="icon-user"></i>mainframer</a>
<span class="label">Category</span>
<a href="http://mainframer.github.io/category/others.html"><i class="icon-folder-open"></i>Others</a>.
<span class="label">Tags</span>
<a href="http://mainframer.github.io/tag/proxy-switchy.html"><i class="icon-tag"></i>proxy switchy</a>
<a href="http://mainframer.github.io/tag/myentunnel.html"><i class="icon-tag"></i>myEntunnel</a>
<a href="http://mainframer.github.io/tag/ssh.html"><i class="icon-tag"></i>ssh</a>
<a href="http://mainframer.github.io/tag/fan-qiang.html"><i class="icon-tag"></i>翻墙</a>
</footer><!-- /.post-info --></div>
<div class="summary"><p>在windows/win7下如何翻墙?告诉你答案:<code>ssh+myEntunnel+chrome+proxy switchy</code>插件翻墙。</p>
<h4>1、注册SSH账号</h4>
<p>SSH是建立在应用层和传输层基础上的提供可靠传输的安全协议。在这里您首先需要去注册一个SSH代理的账号,一般是几块钱一个月的就挺好的了,当然也有免费注册的,不过免费的可能速度不是很快或者连接不稳定。注册SSH的网址我就不发了,不然就有广告的嫌疑了。自己到网上一搜一堆的那种。要是实在找不到的可以通过邮箱<code>[email protected]</code>跟我联系,我告诉你怎么注册。基本上15分钟搞定。 </p>
<h4>2、下载MyEntunnel</h4>
<p>MyEntunnel是用来登录SSH服务器并在本机自动架设一个socks5代理的软件,下载并安装Myentunnel运行。
在桌面右下角任务栏上出现了黄色的锁,说明还没连接上。右击显示,作如下设置:<br />
<img alt="1" src="./../images/myentunnel.jpg" /> </p>
<p>这里,SSH服务器栏填你在上一步中注册SSH账号的服务器地址。一般你注册好SSH账号后服务器地址,SSH端口,用户名和密码都是知道了的,相应地填上就可以了。本地端口填7070,这个要和浏览器Chrome,Proxy switchy的一致,这个下面会讲到。<br />
另外,记得勾上图中的那几个选项,比如失败自动重连什么的。设置好后再重新连接,黄色的锁就会变成绿色的 ...</p>
<a class="btn primary xsmall" href="http://mainframer.github.io/articles/ssh+myEntunnel+chrome+proxy switchy翻墙.html">more ...</a>
</div>
</div>
<hr />
<div class="article">
<h1><a href="http://mainframer.github.io/articles/继续介绍世代数据集GDG.html">继续介绍世代数据集GDG</a></h1>
<div class="well small"><footer class="post-info">
<span class="label">Date</span>
<abbr class="published" title="2011-07-15T00:00:00">
<i class="icon-calendar"></i>2011-07-15
</abbr>
<span class="label">By</span>
<a href="http://mainframer.github.io/author/mainframer.html"><i class="icon-user"></i>mainframer</a>
<span class="label">Category</span>
<a href="http://mainframer.github.io/category/mainframe.html"><i class="icon-folder-open"></i>Mainframe</a>.
<span class="label">Tags</span>
<a href="http://mainframer.github.io/tag/zos.html"><i class="icon-tag"></i>z/OS</a>
<a href="http://mainframer.github.io/tag/gdg.html"><i class="icon-tag"></i>GDG</a>
</footer><!-- /.post-info --></div>
<div class="summary"><p>上篇文章我简单介绍了下大机平台上用到的一种叫做世代数据集(GDG)的文件,在这一篇里,我来比较详细地说明下GDG的用法和注意事项。</p>
<h4>1、新建GDG base</h4>
<p>一般我们可以用Job来新建一个GDG base,下面,我利用utility IDCAMS来生成一个名为IBMUSER.MYGDG.BASE并且可以有10个generation的GDG base。只要提交这个job马上就生成了GDG base了。 <br />
<img alt="1" src="./../images/GDG01.jpg" /> </p>
<h4>2、新建GDG generation</h4>
<p>那么GDG base生成以后,如何生成一个generation呢,要怎么规定生成的generation的文件属性呢?这些都在你的Job里面做的,比如下面的JCL语句: </p>
<div class="highlight"><pre><span class="sr">//</span><span class="no">EXTRACT</span> <span class="no">DD</span> <span class="no">DSN</span><span class="o">=</span><span class="no">IBMUSER</span><span class="o">.</span><span class="n">MYGDG</span><span class="o">.</span><span class="n">BASE</span><span class="p">(</span><span class="o">+</span><span class="mi">1</span><span class="p">),</span>
<span class="sr">//</span> <span class="no">DISP</span><span class="o">=</span><span class="p">(</span><span class="no">NEW</span><span class="p">,</span><span class="no">CATLG</span><span class="p">,</span><span class="no">DELETE</span><span class="p">),</span>
<span class="sr">//</span> <span class="no">UNIT</span><span class="o">=</span><span class="no">SYSDA</span><span class="p">,</span>
<span class="sr">//</span> <span class="no">SPACE</span><span class="o">=</span><span class="p">(</span><span class="no">CYL</span><span class="p">,(</span><span class="mi">10</span><span class="p">,</span><span class="mi">8</span><span class="p">)),</span>
<span class="sr">//</span> <span class="no">DCB</span><span class="o">=</span><span class="p">(</span><span class="no">SYS1</span><span class="o">.</span><span class="n">MODEL</span><span class="p">,</span><span class="no">RECFM</span><span class="o">=</span><span class="no">FB</span><span class="p">,</span><span class="no">LRECL ...</span></pre></div>
<a class="btn primary xsmall" href="http://mainframer.github.io/articles/继续介绍世代数据集GDG.html">more ...</a>
</div>
</div>
<hr />
<div class="article">
<h1><a href="http://mainframer.github.io/articles/世代数据集—GDG介绍.html">世代数据集—GDG介绍</a></h1>
<div class="well small"><footer class="post-info">
<span class="label">Date</span>
<abbr class="published" title="2011-06-25T00:00:00">
<i class="icon-calendar"></i>2011-06-25
</abbr>
<span class="label">By</span>
<a href="http://mainframer.github.io/author/mainframer.html"><i class="icon-user"></i>mainframer</a>
<span class="label">Category</span>
<a href="http://mainframer.github.io/category/mainframe.html"><i class="icon-folder-open"></i>Mainframe</a>.
<span class="label">Tags</span>
<a href="http://mainframer.github.io/tag/zos.html"><i class="icon-tag"></i>z/OS</a>
<a href="http://mainframer.github.io/tag/gdg.html"><i class="icon-tag"></i>GDG</a>
</footer><!-- /.post-info --></div>
<div class="summary"><p>跟大机打交道,一定对大机上面的一种特殊文件gdg不会陌生。gdg又称世代数据集,在大机上面是用来组织彼此相关联的文件。比如你需要一年12个月每个月的报表数据,则可以定义一个有12个generation(世代)的GDG,每个generation存一个月的数据,这样就保证了彼此关联的信息能被更方便地管理和维护。它会保证任何时候都只保留最新的12个月的数据。<br />
要使用GDG,你必须先有一个GDG base,有了GDG base才可以不断地产生generation。GDG文件是用GDG base名字+generation number来唯一区别的。比如你新建了一个GDG base的名字叫做:</p>
<blockquote>
<p>PROD.CLIENT.ACCOUNT.NUMBER
</p>
</blockquote>
<p>则一般你以此产生的第一个generation的名字就叫做:</p>
<blockquote>
<p>PROD.CLIENT.ACCOUNT.NUMBER.G0001V00
</p>
</blockquote>
<p>以此类推,第二个就叫做:</p>
<blockquote>
<p>PROD.CLIENT.ACCOUNT.NUMBER.G0002V00
</p>
</blockquote>
<p>直到<code>G9992V00</code>为止。G000,G001等等叫做世代编号,V00叫做版本号,据我所知,平常用到的基本都是V00,可以这么说,除非极特殊的情况,否则你这辈子不会用到V01 ...</p>
<a class="btn primary xsmall" href="http://mainframer.github.io/articles/世代数据集—GDG介绍.html">more ...</a>
</div>
</div>
<hr />
<div class="article">
<h1><a href="http://mainframer.github.io/articles/介绍几个比较有用的ISPF命令(续一).html">介绍几个比较有用的ISPF命令(续一)</a></h1>
<div class="well small"><footer class="post-info">
<span class="label">Date</span>
<abbr class="published" title="2011-06-14T00:00:00">
<i class="icon-calendar"></i>2011-06-14
</abbr>
<span class="label">By</span>
<a href="http://mainframer.github.io/author/mainframer.html"><i class="icon-user"></i>mainframer</a>
<span class="label">Category</span>
<a href="http://mainframer.github.io/category/mainframe.html"><i class="icon-folder-open"></i>Mainframe</a>.
<span class="label">Tags</span>
<a href="http://mainframer.github.io/tag/ispf.html"><i class="icon-tag"></i>ISPF</a>
</footer><!-- /.post-info --></div>
<div class="summary"><p>接上次讲的,这里继续介绍几个常用的有用的命令。</p>
<h5>COMP</h5>
<p>这是比较文件的命令,功能类似于<code>ISPF 3.13</code>选项。如果你正打开自己PDS下面的<code>DMSID01.TESTLIB.PRGM(MYPGM01)</code>编辑,你想跟你同事(DMSID02)PDS下面的一个MYPGM02比较看看有什么不同的话,你可以直接在Command栏上输入命令:
<code>COMP 'DMSID02.TESTLIB.PRGM(MYPGM02)'</code></p>
<h5>COMP EXC</h5>
<p>这是<code>COMP</code>的高级选项,再后面加上EXC让比较结果中只显示不同的行。当然,为了不失关联性和便于理解,它还额外保留了不同处的前后各5行,显得特别人性化。可以简化成<code>'COMP X'</code> </p>
<h5>F1 twice</h5>
<p>很经常会有你想编辑某个DATASET或者Member的时候提示<code>"Member in use"</code>,这时候你可以连续按两次F1,就能知道谁当前正在使用这个DATASET或者Member了。</p>
<h5>HEX ON/OFF</h5>
<p>文件中经常有些字符在普通的<code>View ...</code></p>
<a class="btn primary xsmall" href="http://mainframer.github.io/articles/介绍几个比较有用的ISPF命令(续一).html">more ...</a>
</div>
</div>
<hr />
<div class="article">
<h1><a href="http://mainframer.github.io/articles/3390 volume,cylinder,track.html">3390 volume,cylinder,track</a></h1>
<div class="well small"><footer class="post-info">
<span class="label">Date</span>
<abbr class="published" title="2011-05-03T00:00:00">
<i class="icon-calendar"></i>2011-05-03
</abbr>
<span class="label">By</span>
<a href="http://mainframer.github.io/author/mainframer.html"><i class="icon-user"></i>mainframer</a>
<span class="label">Category</span>
<a href="http://mainframer.github.io/category/mainframe.html"><i class="icon-folder-open"></i>Mainframe</a>.
<span class="label">Tags</span>
<a href="http://mainframer.github.io/tag/cylinder.html"><i class="icon-tag"></i>cylinder</a>
<a href="http://mainframer.github.io/tag/track.html"><i class="icon-tag"></i>track</a>
</footer><!-- /.post-info --></div>
<div class="summary"><p>通常我们用的是3390盘卷(Volume),一个Volume有多大呢?可以这么计算:<br />
一个3390盘卷有3339+1=3340个柱面(Cylinder);<br />
一个柱面(Cylinder)有15个磁道(track);<br />
一个磁道(track)大概可以保存56KB数据;<br />
一个G=1024M;<br />
综上可以得到:一个3390判卷(Volume)=3340x15x56=2805600KB,约等于<strong>2.6756G</strong>
因为在大机上处理的数据基本都是文本,所以这样的量还是够用的,以至于我到现在也很少遇到需要跨卷的情况。</p>
<a class="btn primary xsmall" href="http://mainframer.github.io/articles/3390 volume,cylinder,track.html">more ...</a>
</div>
</div>
<hr />
<div class="article">
<h1><a href="http://mainframer.github.io/articles/介绍几个有用的ISPF命令(续二).html">介绍几个有用的ISPF命令(续二)</a></h1>
<div class="well small"><footer class="post-info">
<span class="label">Date</span>
<abbr class="published" title="2011-04-24T00:00:00">
<i class="icon-calendar"></i>2011-04-24
</abbr>
<span class="label">By</span>
<a href="http://mainframer.github.io/author/mainframer.html"><i class="icon-user"></i>mainframer</a>
<span class="label">Category</span>
<a href="http://mainframer.github.io/category/mainframe.html"><i class="icon-folder-open"></i>Mainframe</a>.
<span class="label">Tags</span>
<a href="http://mainframer.github.io/tag/ispf.html"><i class="icon-tag"></i>ISPF</a>
</footer><!-- /.post-info --></div>
<div class="summary"><h4>M+F7 和 M+F8</h4>
<p>命令行上输<code>M</code>,接着按<code>F7</code>, 表示回到文件最顶端<br />
命令行上输<code>M</code>,接着按<code>F8</code>, 表示回到文件最低端 </p>
<h4>COL</h4>
<p>显示列号,这个命令特别是在对齐的时候很有用。因为在JCl语法中,很多关键字必须规定从第几列开始写,不然会出错的,比如JCLLIB ORDER一定要从第四列开始写,所以用<code>COL</code>命令显示行号是很有必要的。</p>
<h4>HI</h4>
<p>语法高亮用HI,比如可以用<code>HI PLI</code>来高亮PL/I代码,用<code>HI COBOl</code>高亮COBOl代码,用<code>HI JCL</code>来高亮JCL语法,用<code>HI REXX</code>来高亮REXX语法,用HI ASM来高亮汇编代码,一共支持18种语言。可以<code>HI ...</code></p>
<a class="btn primary xsmall" href="http://mainframer.github.io/articles/介绍几个有用的ISPF命令(续二).html">more ...</a>
</div>
</div>
<hr />
<div class="article">
<h1><a href="http://mainframer.github.io/articles/常见的TSO ISPF命令.html">常见的TSO ISPF命令</a></h1>
<div class="well small"><footer class="post-info">
<span class="label">Date</span>
<abbr class="published" title="2011-04-21T00:00:00">
<i class="icon-calendar"></i>2011-04-21
</abbr>
<span class="label">By</span>
<a href="http://mainframer.github.io/author/mainframer.html"><i class="icon-user"></i>mainframer</a>
<span class="label">Category</span>
<a href="http://mainframer.github.io/category/mainframe.html"><i class="icon-folder-open"></i>Mainframe</a>.
<span class="label">Tags</span>
<a href="http://mainframer.github.io/tag/tso.html"><i class="icon-tag"></i>TSO</a>
<a href="http://mainframer.github.io/tag/ispf.html"><i class="icon-tag"></i>ISPF</a>
</footer><!-- /.post-info --></div>
<div class="summary"><h3>几个概念</h3>
<h4><code>TSO</code></h4>
<p>TSO(Time Sharing Option),时分操作,可以同时让多个用户登录到大机上。一般我们认为的TSO是命令行模式,像一些LOGON,LOGOFF,之类的命令与大机交互。</p>
<h4><code>ISPF</code></h4>
<p>ISPF(Interactive System Programming Facility),它提供了一个menu菜单系统来与大机交互,可以说就是一个简单的menu system。<br />
好了,言归正传。下面是必须知道的ISPF命令: </p>
<h5>ISPF功能键</h5>
<p>PF1: HELP帮助键<br />
PF2: SPLIT键,改变分屏位置<br />
PF3: END键,结束并退回上级菜单<br />
PF4: RETURN键,结束并退回主菜单<br />
PF5: REFIND键,重复最近一次FIND命令<br />
PF6: RECHANGE键,重复最近一次CHANGE命令<br />
PF7: UP键,向上滚屏<br />
PF8: DOWN键,向下滚屏<br />
PF9: SWAP键 ...</p>
<a class="btn primary xsmall" href="http://mainframer.github.io/articles/常见的TSO ISPF命令.html">more ...</a>
</div>
</div>
<hr />
<div class="pagination">
<ul>
<li class="prev"><a href="http://mainframer.github.io/index13.html">← Previous</a></li>
<li class=""><a href="http://mainframer.github.io/index.html">1</a></li>
<li class=""><a href="http://mainframer.github.io/index2.html">2</a></li>
<li class=""><a href="http://mainframer.github.io/index3.html">3</a></li>
<li class=""><a href="http://mainframer.github.io/index4.html">4</a></li>
<li class=""><a href="http://mainframer.github.io/index5.html">5</a></li>
<li class=""><a href="http://mainframer.github.io/index6.html">6</a></li>
<li class=""><a href="http://mainframer.github.io/index7.html">7</a></li>
<li class=""><a href="http://mainframer.github.io/index8.html">8</a></li>
<li class=""><a href="http://mainframer.github.io/index9.html">9</a></li>
<li class=""><a href="http://mainframer.github.io/index10.html">10</a></li>
<li class=""><a href="http://mainframer.github.io/index11.html">11</a></li>
<li class=""><a href="http://mainframer.github.io/index12.html">12</a></li>
<li class=""><a href="http://mainframer.github.io/index13.html">13</a></li>
<li class="active"><a href="http://mainframer.github.io/index14.html">14</a></li>
<li class=""><a href="http://mainframer.github.io/index15.html">15</a></li>
<li class=""><a href="http://mainframer.github.io/index16.html">16</a></li>
<li class="next"><a href="http://mainframer.github.io/index15.html">Next →</a></li>
</ul>
</div>
</div><!--/span-->
<div class="span3 well sidebar-nav" id="sidebar">
<ul class="nav nav-list">
<li class="nav-header"><h4><i class="icon-external-link"></i>blogroll</h4></li>
<li><a href="http://www-01.ibm.com/support/knowledgecenter"><i class="icon-external-link"></i>IBM知识中心</a></li>
<li class="nav-header"><h4><i class="icon-home icon-large"></i> social</h4></li>
<li><a href="http://mainframer.github.io/" rel="alternate"><i class="icon-bookmark icon-large"></i>atom feed</a></li>
<li><a href="https://github.com/mainframer"><i class="icon-mainframer@Github-sign icon-large"></i>mainframer@Github</a></li>
<li><a href="https://www.linkedin.com/in/mainframer"><i class="icon-mainframer@Linkedin-sign icon-large"></i>mainframer@Linkedin</a></li>
<li class="nav-header"><h4><i class="icon-folder-close icon-large"></i>Categories</h4></li>
<li>
<a href="http://mainframer.github.io/category/automation.html">
<i class="icon-folder-open icon-large"></i>Automation
</a>
</li>
<li>
<a href="http://mainframer.github.io/category/chi-xu-ji-cheng.html">
<i class="icon-folder-open icon-large"></i>持续集成
</a>
</li>
<li>
<a href="http://mainframer.github.io/category/ibm-rational.html">
<i class="icon-folder-open icon-large"></i>IBM Rational
</a>
</li>
<li>
<a href="http://mainframer.github.io/category/linuxunixuss.html">
<i class="icon-folder-open icon-large"></i>Linux/Unix/USS
</a>
</li>
<li>
<a href="http://mainframer.github.io/category/mainframe.html">
<i class="icon-folder-open icon-large"></i>Mainframe
</a>
</li>
<li>
<a href="http://mainframer.github.io/category/others.html">
<i class="icon-folder-open icon-large"></i>Others
</a>
</li>
<li>
<a href="http://mainframer.github.io/category/pa-chong.html">
<i class="icon-folder-open icon-large"></i>爬虫
</a>
</li>
<li>
<a href="http://mainframer.github.io/category/python.html">
<i class="icon-folder-open icon-large"></i>Python
</a>
</li>
<li>
<a href="http://mainframer.github.io/category/rexx.html">
<i class="icon-folder-open icon-large"></i>Rexx
</a>
</li>
<li>
<a href="http://mainframer.github.io/category/ruby.html">
<i class="icon-folder-open icon-large"></i>Ruby
</a>
</li>
<li class="nav-header"><h4><i class="icon-tags icon-large"></i>Tags</h4></li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/pcomm.html">
<i class="icon-tag icon-large"></i>PCOMM
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/goto.html">
<i class="icon-tag icon-large"></i>GOTO
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/iceman.html">
<i class="icon-tag icon-large"></i>ICEMAN
</a>
</li>
<li class="tag-2">
<a href="http://mainframer.github.io/tag/ispf.html">
<i class="icon-tag icon-large"></i>ISPF
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/linuxgua-zai.html">
<i class="icon-tag icon-large"></i>Linux挂载
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/da-xing-ji.html">
<i class="icon-tag icon-large"></i>大型机
</a>
</li>
<li class="tag-2">
<a href="http://mainframer.github.io/tag/debug-tool.html">
<i class="icon-tag icon-large"></i>Debug Tool
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/for.html">
<i class="icon-tag icon-large"></i>FOR
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/backtrack5-r1.html">
<i class="icon-tag icon-large"></i>BackTrack5 R1
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/db2-sqlcode.html">
<i class="icon-tag icon-large"></i>DB2 SQLcode
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/markdown.html">
<i class="icon-tag icon-large"></i>Markdown
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/zi-dong-hua.html">
<i class="icon-tag icon-large"></i>自动化
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/genlist.html">
<i class="icon-tag icon-large"></i>genlist
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/stardict.html">
<i class="icon-tag icon-large"></i>stardict
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/dong-tai-shu-zu.html">
<i class="icon-tag icon-large"></i>动态数组
</a>
</li>
<li class="tag-2">
<a href="http://mainframer.github.io/tag/watir.html">
<i class="icon-tag icon-large"></i>Watir
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/sshfan-qiang.html">
<i class="icon-tag icon-large"></i>ssh翻墙
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/beautifulsoup.html">
<i class="icon-tag icon-large"></i>BeautifulSoup
</a>
</li>
<li class="tag-2">
<a href="http://mainframer.github.io/tag/backtrack.html">
<i class="icon-tag icon-large"></i>Backtrack
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/rpm.html">
<i class="icon-tag icon-large"></i>RPM
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/vb-script.html">
<i class="icon-tag icon-large"></i>VB Script
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/requests.html">
<i class="icon-tag icon-large"></i>requests
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/undo.html">
<i class="icon-tag icon-large"></i>UNDO
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/linux.html">
<i class="icon-tag icon-large"></i>Linux
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/cicsming-ling.html">
<i class="icon-tag icon-large"></i>CICS命令
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/joinkey.html">
<i class="icon-tag icon-large"></i>JOINKEY
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/superc.html">
<i class="icon-tag icon-large"></i>SuperC
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/octotree.html">
<i class="icon-tag icon-large"></i>Octotree
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/quote-site.html">
<i class="icon-tag icon-large"></i>quote site
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/qwming-ling.html">
<i class="icon-tag icon-large"></i>QW命令
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/github-pages.html">
<i class="icon-tag icon-large"></i>GitHub Pages
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/pli.html">
<i class="icon-tag icon-large"></i>PLI
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/ftp.html">
<i class="icon-tag icon-large"></i>ftp
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/linuxying-jian.html">
<i class="icon-tag icon-large"></i>Linux硬件
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/ispf-dialog.html">
<i class="icon-tag icon-large"></i>ISPF Dialog
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/file-manager.html">
<i class="icon-tag icon-large"></i>File Manager
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/arithextend.html">
<i class="icon-tag icon-large"></i>ARITH(EXTEND)
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/fen-ge-da-wen-jian.html">
<i class="icon-tag icon-large"></i>分割大文件
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/ispftong-pei-fu.html">
<i class="icon-tag icon-large"></i>ISPF通配符
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/jts.html">
<i class="icon-tag icon-large"></i>jts
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/jcl-fan-hui-ma.html">
<i class="icon-tag icon-large"></i>JCL 返回码
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/win8.html">
<i class="icon-tag icon-large"></i>win8
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/fan-qiang.html">
<i class="icon-tag icon-large"></i>翻墙
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/logging.html">
<i class="icon-tag icon-large"></i>Logging
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/ikj56400a.html">
<i class="icon-tag icon-large"></i>IKJ56400A
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/jclpi-liang-zhu-shi.html">
<i class="icon-tag icon-large"></i>JCL批量注释
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/linuxmu-lu-jie-gou.html">
<i class="icon-tag icon-large"></i>Linux目录结构
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/loadparm.html">
<i class="icon-tag icon-large"></i>LoadParm
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/tsq.html">
<i class="icon-tag icon-large"></i>TSQ
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/srchfor.html">
<i class="icon-tag icon-large"></i>SRCHFOR
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/chrome.html">
<i class="icon-tag icon-large"></i>chrome
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/zhu-ji-yi-ben-tong.html">
<i class="icon-tag icon-large"></i>主机一本通
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/blksize0.html">
<i class="icon-tag icon-large"></i>BLKSIZE=0
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/copybook.html">
<i class="icon-tag icon-large"></i>Copybook
</a>
</li>
<li class="tag-1">
<a href="http://mainframer.github.io/tag/zos.html">
<i class="icon-tag icon-large"></i>z/OS
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/batpi-chu-li.html">
<i class="icon-tag icon-large"></i>BAT批处理
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/octopress.html">
<i class="icon-tag icon-large"></i>Octopress
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/shen-tou-ce-shi.html">
<i class="icon-tag icon-large"></i>渗透测试
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/intrdr.html">
<i class="icon-tag icon-large"></i>INTRDR
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/cobolgui-ze.html">
<i class="icon-tag icon-large"></i>COBOL规则
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/proxy-switchy.html">
<i class="icon-tag icon-large"></i>proxy switchy
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/.html">
<i class="icon-tag icon-large"></i>
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/myentunnel.html">
<i class="icon-tag icon-large"></i>myEntunnel
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/heroku.html">
<i class="icon-tag icon-large"></i>Heroku
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/hercules.html">
<i class="icon-tag icon-large"></i>Hercules
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/dataset.html">
<i class="icon-tag icon-large"></i>dataset
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/kde.html">
<i class="icon-tag icon-large"></i>KDE
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/vmware8.html">
<i class="icon-tag icon-large"></i>vmware8
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/dnsdict6.html">
<i class="icon-tag icon-large"></i>dnsdict6
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/nmap.html">
<i class="icon-tag icon-large"></i>nmap
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/cics.html">
<i class="icon-tag icon-large"></i>CICS
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/sql.html">
<i class="icon-tag icon-large"></i>SQL
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/find-all.html">
<i class="icon-tag icon-large"></i>FIND ALL
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/shutil.html">
<i class="icon-tag icon-large"></i>Shutil
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/duo-xing-zi-fu-chuan.html">
<i class="icon-tag icon-large"></i>多行字符串
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/tso.html">
<i class="icon-tag icon-large"></i>TSO
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/cebr.html">
<i class="icon-tag icon-large"></i>CEBR
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/datacom.html">
<i class="icon-tag icon-large"></i>DATACOM
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/sort.html">
<i class="icon-tag icon-large"></i>SORT
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/ssh.html">
<i class="icon-tag icon-large"></i>ssh
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/procmu-lu.html">
<i class="icon-tag icon-large"></i>proc目录
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/tor.html">
<i class="icon-tag icon-large"></i>TOR
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/ti-jiao-alexa.html">
<i class="icon-tag icon-large"></i>提交Alexa
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/ti-jiao-jcl.html">
<i class="icon-tag icon-large"></i>提交JCL
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/wsgi.html">
<i class="icon-tag icon-large"></i>WSGI
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/cobol.html">
<i class="icon-tag icon-large"></i>COBOL
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/zai-xian-hao-dong-xi.html">
<i class="icon-tag icon-large"></i>在线好东西
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/s000-u4088.html">
<i class="icon-tag icon-large"></i>S000 U4088
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/changeman.html">
<i class="icon-tag icon-large"></i>Changeman
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/trigger-job.html">
<i class="icon-tag icon-large"></i>trigger job
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/python.html">
<i class="icon-tag icon-large"></i>Python
</a>
</li>
<li class="tag-2">
<a href="http://mainframer.github.io/tag/gdg.html">
<i class="icon-tag icon-large"></i>GDG
</a>
</li>
<li class="tag-3">
<a href="http://mainframer.github.io/tag/icetool.html">
<i class="icon-tag icon-large"></i>ICETOOL
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/coboljie-gou.html">
<i class="icon-tag icon-large"></i>COBOL结构
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/wai-qi-email.html">
<i class="icon-tag icon-large"></i>外企email
</a>
</li>
<li class="tag-4">
<a href="http://mainframer.github.io/tag/adsenseshen-qing.html">
<i class="icon-tag icon-large"></i>Adsense申请
</a>