码迷,mamicode.com
首页 >  
搜索关键字:GNU Bash    ( 18398个结果
实用shell脚本
1、检测两台服务器指定目录下的文件一致性 #!/bin/bash ##################################### #检测两台服务器指定目录下的文件一致性 ##################################### #通过对比两台服务器上文件的md5值,达到 ...
分类:系统相关   时间:2021-03-26 15:20:05    阅读次数:0
Cenots7 初始化 必装的yum 软件包
#!/bin/bash mkdir /etc/yum.repos.d/repo mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/repo curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.ali ...
分类:其他好文   时间:2021-03-18 14:42:38    阅读次数:0
域名到期时间检测
#!/bin/bash #检测whois命令是否存在,不存在则安装jwhois包is_install_whois(){ which whois &> /dev/null if [ $? -ne 0 ];then yum install -y jwhois fi}is_install_whois#定义 ...
分类:其他好文   时间:2021-03-18 14:10:30    阅读次数:0
cmder配置
cmder介绍 简介 windows10中常用的命令行终端有cmd,powershell。其它需手动安装的终端有git bash(对于git命令),xshell(对于ssh连接远程主机附带linux命令) 集成多种终端,实现高效开发的命令行工具cmder,可以实现cmd,git,ssh,linux多 ...
分类:其他好文   时间:2021-03-18 14:03:40    阅读次数:0
shell遍历文件夹读取文件夹下的文件
collect_time.sh脚本需求: 遍历/dz目录下所有以A开头的文件夹,读取该文件夹下的time.log的首行内容,依次写入脚本的路径参数/lj/times.txt中。 编写collect_time.sh: #!/bin/bash file="time.log" readDir="/dz" ...
分类:系统相关   时间:2021-03-16 13:55:14    阅读次数:0
Oh ! My ZSH !!!
zsh + oh my zsh 使用 切换bash 切换bash chsh -s /bin/bash 切换zsh chsh -s /bin/zsh 安装 oh my zsh ! 插件地址 https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins 主 ...
分类:其他好文   时间:2021-03-16 13:54:23    阅读次数:0
虚拟机快速下载安装配置aarch64-linux-gnu-gcc工具链
方式一:软件仓库安装 此方法不用自己去配置交叉编译工具链 1.查看本地仓库有支持哪些版本哪些 输入命令: apt-cache search aarch64 2.下载安装 gcc-8-aarch64-linux-gnu 输入:sudo apt-get install gcc-8-aarch64-lin ...
分类:系统相关   时间:2021-03-16 13:38:58    阅读次数:0
开源项目Elastic Shell发布,基本管理
什么是Elastic Shell Elastic Shell是一套完全用Bash Shell编写的,用于管理Elasticsearch搜索引擎的工具脚本。目前,它提供了针对index和snapshot的基本管理,并提供了针对reindex和Elasticsearch集群升级的辅助自动化。 本质上,E ...
分类:系统相关   时间:2021-03-15 10:42:46    阅读次数:0
inspection tool
gnu http://www.gnu.org/software/binutils/ The GNU Binutils are a collection of binary tools. The main ones are: ld - the GNU linker. as - the GNU asse ...
分类:其他好文   时间:2021-03-11 20:36:58    阅读次数:0
记录一个标准的k8s deployment
首先是deployment: apiVersion: apps/v1 kind: Deployment metadata: name: webapp1 spec: replicas: 1 selector: matchLabels: app: webapp1 template: metadata: ...
分类:其他好文   时间:2021-03-09 13:14:40    阅读次数:0
18398条   上一页 1 ... 17 18 19 20 21 ... 1840 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!