码迷,mamicode.com
首页 >  
搜索关键字:perl 文件句柄 文件分类    ( 4511个结果
【Python学习】python __enter__ 与 __exit__的作用,以及与 with 语句的关系
With语句是什么? 有一些任务,可能事先需要设置,事后做清理工作。对于这种场景,Python的with语句提供了一种非常方便的处理方式。一个很好的例子是文件处理,你需要获取一个文件句柄,从文件中读取数据,然后关闭文件句柄。 如果不用with语句,代码如下: file = open("/tmp/fo ...
分类:编程语言   时间:2020-06-11 13:41:55    阅读次数:68
Perl-常用知识点归纳
各进制数表示 八进制以 0 开头, 十六进制以 0x 开头, 二进制 0b 开头,Perl 允许你使用下划线来区分 数字操作符 加(+), 减(-), 乘(*), 除(/) ,模数运算符(%),次方(**) 转义字符 \n 换行 \r 回车 \t 制表符 字符串操作符 . 用于字符串连接,如“hel ...
分类:其他好文   时间:2020-06-11 10:30:20    阅读次数:57
常用免费的自动化测试工具汇总
1、Selenium 官网:https://www.seleniumhq.org/download/ WebUI自动化测试 Selenium是一个用于Web应用程序测试的工具,Selenium已经成为Web自动化测试工程师的首选。Selenium测试直接运行在浏览器中,就像真正的用户在操作一样。支持 ...
分类:其他好文   时间:2020-06-10 14:39:28    阅读次数:59
perl 一行程序
https://www.cnblogs.com/agostop/archive/2012/03/09/2387775.html https://blog.csdn.net/weixin_30825581/article/details/98601867 https://www.ibm.com/dev ...
分类:其他好文   时间:2020-06-10 13:17:36    阅读次数:47
linux(centos8):安装jmeter5.3
一,jmeter的用途: Apache JMeter是Apache组织开发的基于Java的压力测试工具。用于对软件做压力测试, 它最初被设计用于Web应用测试,但后来扩展到其他测试领域。 Apache jmeter 可以用于对静态的和动态的资源(文件,Servlet,Perl脚本,java 对象,数 ...
分类:系统相关   时间:2020-06-09 14:39:48    阅读次数:190
开发环境
开发环境说明 linux系统:ubuntu18.04 libevent版本:2.1.8 1 安装依赖环境 apt-get install perl g++ make automake libtool unzip2 zlib编译 tar -xvf zlib-1.2.11.tar.gz cd zlib- ...
分类:其他好文   时间:2020-06-07 13:09:50    阅读次数:77
shell-数组删除
##删除指定元素 使用unset来删除某个数组元素,语法为: unset array[n] 实例 #!/bin/bash program=(c c++ c# h5 java SQL python PHP perl go .net js MATLAB) echo "高级语言有:${program[@] ...
分类:编程语言   时间:2020-06-05 00:36:10    阅读次数:87
linux非root用户安装perl及其基本用法
1、 wget -c https://www.cpan.org/src/5.0/perl-5.30.3.tar.gz tar zxvf perl-5.30.3.tar.gz cd perl-5.30.3/ ./Configure -des -Dprefix=/home/dongjiangxing/0 ...
分类:系统相关   时间:2020-06-03 23:08:34    阅读次数:200
MTK logo 打包
0. 实验设备是寨板 mt6797,以下教程应该适合一堆新旧板子 1. https://github.com/bgcngm/mtk-tools 2. perl 自行准备 3. ffmpeg 也自行准备 4. adb & fastboot 应该都有 Tip: 与之前得rgb565不同得是....新机型 ...
分类:其他好文   时间:2020-05-31 10:52:33    阅读次数:150
What are the differences between Perl, Python, AWK and sed
What are the differences between Perl, Python, AWK and sed In order of appearance, the languages are sed, awk, perl, python. The sed program is a stre ...
分类:编程语言   时间:2020-05-29 23:12:24    阅读次数:87
4511条   上一页 1 ... 11 12 13 14 15 ... 452 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!