码迷,mamicode.com
首页 >  
搜索关键字:unzip    ( 1013个结果
常见LINUX命令之服务器部署
ps -ef|grep apache -tomcat 查看进程 kill -9 杀死进程 ls 看命令 ./ startup.sh 启动 cd ../logs 查log tail -f catalina.out 看log chmod -R 777 * chmod 777 * 赋权限 unzip 文件 ...
分类:系统相关   时间:2021-03-26 15:32:48    阅读次数:0
Nginx发布项目完整过程
1.创建一个toutiao目录 cd /home mkdir toutiao 2.将项目上传到toutiao目录 项目上传详细见安装的一二步 3.解压项目 unzip web.zip 4.编辑Nginx配置文件cd /home/nginx-1.17.5/conf/nginx.conf (注意:配置刚 ...
分类:其他好文   时间:2021-03-15 10:44:43    阅读次数:0
Golang Rpc 基本使用
protoc 编译工具 windows 平台下载对应平台的 protobuf,并配置环境变量 protobuf linux 环境先安装依赖 sudo apt-get install autoconf automake libtool curl make g++ unzip git clone htt ...
分类:其他好文   时间:2021-02-27 13:31:02    阅读次数:0
shell 解压当前目录所有zip文件
code macname@MacdeMacBook-Pro zipfiles % cat test.sh #!/bin/bash ZIP_FILES=$(ls *.zip) for zip_file in $ZIP_FILES; do unzip $zip_file done macname@Mac ...
分类:系统相关   时间:2021-02-01 11:49:14    阅读次数:0
Python学习-将zip文件进行解压再进行改名压缩
一、先将压缩文件解压至指定目录 import zipfile import os zip_src = "目标指定压缩文件" def unzip_file(): r = zipfile.ZipFile(zip_src) if r: fz = zipfile.ZipFile(zip_src, 'r') ...
分类:编程语言   时间:2021-01-29 12:23:34    阅读次数:0
linux中的tail以及unzip命令的简单使用
linux 中的 tail 命令 tail 命令可用于查看文件的内容,有一个常用的参数 -f 常用于查阅正在改变的日志文件。 tail -f filename 会把 filename 文件里的最尾部的内容显示在屏幕上,并且不断刷新,只要 filename 更新就可以看到最新的文件内容。 命令格式: ...
分类:系统相关   时间:2021-01-22 12:31:31    阅读次数:0
Linux下的压缩解压缩命令详解
zip命令 zip -r myfile.zip ./* 将当前目录下的所有文件和文件夹全部压缩成myfile.zip文件,-r表示递归压缩子目录下所有文件. 2.unzip unzip -o -d /home/sunny myfile.zip 把myfile.zip文件解压到 /home/sunny ...
分类:系统相关   时间:2021-01-21 10:28:44    阅读次数:0
RocketMQ下载、安装、以及结合Springboot的使用
下载 wget https://archive.apache.org/dist/rocketmq/4.5.1/rocketmq-all-4.5.1-bin-release.zip 安装 unzip rocketmq-all-4.5.1-bin-release.zip 启动 cd rocketmq-a ...
分类:编程语言   时间:2021-01-13 11:00:51    阅读次数:0
zabbix 5.2.2 结合 grafana7..3.6做大屏显示
grafana下载地址wgethttps://dl.grafana.com/oss/release/grafana-7.3.6-1.x86_64.rpmsudoyuminstallgrafana-7.3.6-1.x86_64.rpm如果网速不好,可以直接通过迅雷打开链接https://dl.grafana.com/oss/release/grafana-7.3.6-1.x86_64.rpm下载到本
分类:其他好文   时间:2020-12-25 12:36:18    阅读次数:0
翻译-编译LineageOS
系统: Ubuntu18.04 vmware 环境搭建 安装SDK https://dl.google.com/android/repository/platform-tools-latest-linux.zip 执行命令: unzip platform-tools-latest-linux.zip ...
分类:其他好文   时间:2020-12-11 12:34:15    阅读次数:23
1013条   上一页 1 2 3 4 ... 102 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!