unzip apache-tomcat-7.0.55-windows- x64.zip 解压zip文件 chmod +x startup.sh shutdown.sh catalina.sh 增加执行权限,./startup.sh 执行 tail -f ../logs/catalina.out 持续 ...
分类:
系统相关 时间:
2019-07-27 15:47:10
阅读次数:
128
windows下安装 1. 安装strawberry-perl-5.24.3.1-64bit.msi 2. ora2pg-18.2.zip 解压缩cd 进入目录perl Makefile.PLdmake && dmake install 3. DBI-1.639.tar.gz解压缩cd 进入目录pe ...
分类:
数据库 时间:
2019-07-20 23:12:26
阅读次数:
288
以下指令包括文件删除、复制、zip文件解压操作。使用7z指令指令进行解压操作前,需要确保 windows 的 path 系统环境变量中存在7z的安装路径。 7z的下载地址:https://www.7-zip.org/download.html 原文地址: https://www.cnblogs.co ...
分类:
Windows程序 时间:
2019-07-19 13:59:17
阅读次数:
1417
unzip:unzip解压文件到指定目录 1、把文件解压到当前目录下 unzip test.zip 2、如果要把文件解压到指定的目录下,需要用到-d参数。 unzip -d /temp test.zip 3、解压的时候,有时候不想覆盖已经存在的文件,那么可以加上-n参数 unzip -n test. ...
分类:
其他好文 时间:
2019-07-07 14:39:30
阅读次数:
80
1、protobuf配置 (1)https://github.com/protocolbuffers/protobuf/releases (2)选择适合的版本:protoc-3.8.0-win64.zip (3)解压后将文件 protoc.exe 所在目录添加到环境变量 Path (4)检查prot ...
package utils import ( "archive/zip" "fmt" "io" "io/ioutil" "log" "os" "strings") //压缩文件//files 文件数组,可以是不同dir下的文件或者文件夹//dest 压缩文件存放地址func Compress(fil ...
分类:
其他好文 时间:
2019-06-10 09:14:08
阅读次数:
97
1、Eclipse IDE 版本 "eclipse jee 2019 03 R win32 x86_64.zip" 2、Eclipse 汉化包下载 "babel R0.16.0 photon.zip" 3、解压&安装汉化包 1. 下载的压缩文件: ; 2. 解压后是一个名为 的文件夹,打开并复制其中 ...
分类:
系统相关 时间:
2019-06-08 00:35:26
阅读次数:
253
1、安装zip、unzip应用。 2、压缩和解压文件 以下命令均在/home目录下操作 cd /home #进入/home目录 a、把/home目录下面的mydata目录压缩为mydata.zip zip -r mydata.zip mydata #压缩mydata目录 b、把/home目录下面的m ...
分类:
其他好文 时间:
2019-06-05 23:39:53
阅读次数:
113
package utils import ( "archive/zip" "fmt" "io" "io/ioutil" "log" "os" "strings") //压缩文件//files 文件数组,可以是不同dir下的文件或者文件夹//dest 压缩文件存放地址func Compress(fil ...
分类:
其他好文 时间:
2019-06-03 23:41:01
阅读次数:
134
(一)系统环境工具 1.windows 7 32位 2.masm5.0,如果没有,点击这里 (二)编译环境安装 1.将下载下来的masm5.0.zip,解压缩,这包是免安装,直接解压到C:\work目录下,同时把MASM所在的执行路径添加到系统环境变量PATH中。 2.打开CMD命令行窗口模式,cd ...
分类:
编程语言 时间:
2019-05-22 22:35:58
阅读次数:
160