06 2019 档案
摘要:选自:https://blog.csdn.net/rangf/article/details/6096365 sftpsecurecrt 按下ALT+P就开启新的会话 进行ftp操作。输入:help命令,显示该FTP提供所有的命令 pwd: 查询linux主机所在目录(也就是远程主机目录) lpwd
阅读全文
摘要:手机APP例如抖音,让 people‘s 注意力集中到了 社会进化的 优胜部分 (优胜劣汰,什么是优) + 真善美,的 “美” , 促进了2极分化, 会产生强者俞强,弱者越弱, 而 如何 能计算出这些价值呢, 需要 数学 金融 财务 货币 量化吗 手机APP例如抖音,让 people‘s 注意力集中
阅读全文
摘要:$ref = \%hash_clomnname_linevalue; $hash_of_whole_table{$table_name} = {%$ref};
阅读全文
摘要:@hash_clomnname_linevalue{@column_name} = @column_values_of_each_line; #2 list compose a hash (for Jason)
阅读全文
摘要:https://blog.csdn.net/fangwei1235/article/details/8570886 首页 博客 学院 下载 论坛 APP 问答 商城 活动 VIP会员 招聘 ITeye GitChat 图文课 写博客 消息 登录注册 首页 博客 学院 下载 论坛 APP 问答 商城
阅读全文
摘要:https://www.wsj.com/articles/u-s-considers-requiring-5g-equipment-for-domestic-use-be-made-outside-china-11561313072
阅读全文
摘要:代码: 5 my $aref= [ 1,"foo",undef,13 ]; 6 print @$aref[0]."\n"; 7 print @$aref[1]."\n"; 8 print @$aref[3]."\n"; 输出: 1foo13
阅读全文
摘要:转自:http://os.51cto.com/art/201001/177866.htm rpm -i example.rpm 安装 example.rpm 包; rpm -iv example.rpm 安装 example.rpm 包并在安装过程中显示正在安装的文件信息; rpm -ivh exa
阅读全文
摘要:转自:https://www.zhihu.com/question/20173592 当然,perl等脚本服务器是一般默认安装了,你入侵了一台主机,总不能先装配 Java 环境然后再开干吧?
阅读全文
摘要:登录/注册 下载豆瓣客户端 豆瓣 读书 电影 音乐 同城 小组 阅读 FM 时间 豆品 更多 登录/注册 下载豆瓣客户端 豆瓣 读书 电影 音乐 同城 小组 阅读 FM 时间 豆品 更多 登录/注册 下载豆瓣客户端 豆瓣 读书 电影 音乐 同城 小组 阅读 FM 时间 豆品 更多 豆瓣 读书 电影
阅读全文
摘要:一天等于几百块工钱和 多出来的/上涨的 一平米/几千块 房价...
阅读全文
摘要:下载绿色版: https://portableapps.com/apps/utilities/workrave_portable 选择阅读模式: 中文: 可以只选择启动休息的计时器,这样其他2个就不用设置了: 使用方法2:https://www.playpcesor.com/2008/08/work
阅读全文
摘要:jimyokl has asked for the wisdom of the Perl Monks concerning the following question: Reputation: 5 Edit I just started learning Perl for several days
阅读全文
摘要:五秒原则,做一件事之前数 5 秒,1,2,4,5 立马去做。比如睡觉:数五秒,立马放下手机,闭眼。
阅读全文
摘要:$tar xvfz JSON.tar.gz $cd JSON $perl Makefile.PL $make $make install
阅读全文
摘要:bash-2.03$ ./u_json.pl Can't locate object method "encode" via package "JSON" at ./u_json.pl line 24. bash-2.03$ ./v_hash_2_Jason.pl Can't call method
阅读全文
摘要:表名 表字段名 定义每个表字段
阅读全文
摘要:54 while($lines_num_of_whole_table>=1){ 55 my $i = 1; 56 print "i:".$i."\n"; 57 @column_values_of_each_line = split(/,/, $table_column_name_and_value_
阅读全文
摘要:沈南鹏@《遇见大咖》: A轮没投,投了8个月以后就证明了张一鸣是对了,在美国都没有张一鸣这种模式
阅读全文
摘要:在输入put后,再摁 TAB 键,可显示当前文件夹的文件 sftp:/home/yan> put $Recycle.Bin\ BluestacksCN\ boot\ bootmgr Documents and Settings\ hiberfil.sys installAgent.log Intel
阅读全文
摘要:Perl语言入门: 斜线不是元字符,所以在不作为分隔符时不需要加上反斜线。
阅读全文
摘要:Perl中 qw 是 “quoted Word” 或是 “quoted by whitespace”的简写 eg: @strict_pragma = qw ( a b c);
阅读全文
摘要:文件内容: bash-2.03$ cat file_4_ex_ch7.txt anonymous attribute demolition grammar rules indices refernces lignAAlign,ligning..AABB 代码: 80 print "\n exerci
阅读全文
摘要:1.覆盖 echo "string" > filename 2.追加 echo "string" >> filename
阅读全文
摘要:Perl字符集[\d\D]表示任何字符(所有数字和非数字,包括换行符),“.”表示除了换行符以外的所有字符。
阅读全文
摘要:字符集匹配:\s 匹配一个空格,一边后面加量词表示多个空格,\s*表示0个以上空格,\s+表示1个以上空格,\s相当于[\f\r\n\t ]5种空白字符。
阅读全文
摘要:Perl字符集就是方括号(或称中括号)里一连串可能的字符,只匹配单一字符,该单一字符可以是字符集里的任何一个,“-”在字符集里有特殊含义:表示某个范围的字符。而字符集意外的连字符不具有特殊意义。
阅读全文
摘要:如题 41 print \000; 42 print "\n"; 43 print \177; 输出: SCALAR(0x3fce0)SCALAR(0x3fc98)
阅读全文
摘要:my @escaped = "asteriskasterisk hash access unpack_func"; # 是一个元素的赋值 25 unless( $escaped[1] ){ 26 print "\$escaped[1] is undef."; 27 } 输出:$escaped[1]
阅读全文
摘要:* : 任意多个 0,1,2,3,. . . + : 一个以上, 1,2,3,... ? : 0个或者1个
阅读全文
摘要:c 功能和d相同,区别在于完成删除操作后进入INSERT MODE cc 也是删除当前行,然后进入INSERT MODE 删除每行第一个字符 :%s/^.//g ? 试试
阅读全文
摘要:grep -n 'sign.*context' associative_array.pl 可以查得到,bash-2.03$ grep -n '*sign.*context' associative_array.pl 查不到? bash-2.03$ grep -n 'sign.*context' as
阅读全文
摘要:37 print "\n _exercise_6_1 \n"; 38 my %bless_function = ( #hash may be a lexical variable 39 "constructors" => "default_values", 40 "error_handling" =
阅读全文
摘要:44 my $unpackeing; 45 my $arrow_notation = ''; 46 print "Enter name to query, enter exit to exit:\n"; 47 $arrow_notation = ( chomp( $unpackeing = <STD
阅读全文
摘要:31 delete $vertical_alignment{$anonymous}; 32 print $vertical_alignment{$anonymous}."\n"; err: Use of uninitialized value in concatenation (.) or stri
阅读全文
摘要:2. 123 my %vertical_alignment; 124 $vertical_alignment{"subscripting"} = 0; 125 unless($vertical_alignment{"subscripting"}){ 126 print "0\n"; 127 } 12
阅读全文
摘要:109 my $slice_layouts; 110 my $vertical_assignment; 111 my %map_function_indices = ( 112 "OK_func" => "open_statement", 113 "package_VAR" => "position
阅读全文
摘要:布尔上下文,这里misreading返回的是来源列表中元素的个数, 列表赋值运算的值将会是来源列表中元素的个数,空列表表示0,如果列表中2个值都是undef,则列表元素个数是1 布尔上下文,这里misreading返回的是来源列表中元素的个数: 103 while( $misreading = (m
阅读全文
摘要:my %map_function = ( 88 "OK_func" => "open_statement", 89 "package_VAR" => "positional", 90 "split_func" => "prototypes", 91 ); 92 my @substr = keys %
阅读全文
摘要:my %map_function = ( 88 "OK_func" => "open_statement", 89 "package_VAR" => "positional", 90 "split_func" => "prototypes", 91 ); 92 my @substr = keys %
阅读全文
摘要:要粘贴的话,先set paste,然后粘贴,然后再set nopaste
阅读全文
摘要:ssh登陆远程的solaris 10,backspace出现乱码。 ssh登陆远程的solaris 10默认Shell不是bash 把solaris10的shell环境改为bash就行 dev13% bash bash-2.03$ perl -vThis is perl, version 4.0
阅读全文
摘要:散列的索引值,不是数值,而是 互不相同的任意字符串。 任意的 字符串 ,一个散列里只能有一个名叫Willa的元素 2. 如何命名 散列变量的 名称 $family_name(“宏”) = “李”; 这样可以 说 “宏” 的姓 是 “李”
阅读全文
摘要:#! /usr/bin/perl use strict;use warnings;=head1print "\n test_ \n";if(!open LOG, ">> Z/logfile"){ die "can't create logfile: $!";}print "\n test_ \n";
阅读全文
摘要:#! /usr/bin/perl use strict;use warnings;print "\n <STDIN>_store_into_an_array_and_then_chomp() \n";my @lines = <STDIN>;chomp(@lines);print "\n Input_
阅读全文
摘要:#! /usr/bin/perl use strict;use warnings;=head1print "\n ch_5_Q1_ \n";#print reverse <>;print "\n _ \n";select STDIN;my @single_quotation = <>;print @
阅读全文
摘要:#! /usr/bin/perluse strict;use warnings;print "\n summation_STDIN_parameter \n";sub total{ my $array_len = @_; my $sum = 0; foreach(0..$array_len){ $s
阅读全文
摘要:#! /usr/bin/perl use strict;use warnings;=podprint "\n while(defined(\$equal_sign = <>)) \n";my $forwar_slash;while(defined($forwar_slash = <>)){ chom
阅读全文
摘要:花括号的使用 printf %${width}s , 否则会 去找 $widths 1 #! /usr/bin/perl 2 use strict; 3 use warnings; 4 5 =head1 6 print "\n ch_5_Q1_ \n"; 7 #print reverse <>; 8
阅读全文
摘要:reverse 是倒置 <> 则是 把 @ARGV 参数列表里面的文件都读取出来 ? print <> 就是和 cat 的功能一样了。 脚本语言交流、数据处理 QQ群:6680-19199,欢迎加入,加入时注明 “cnblogs" 或 “script” 或 “脚本” 或 "perl”,谢谢!
阅读全文
浙公网安备 33010602011771号