编程及软件开发解决方案库

2000万优秀解决方案库,覆盖所有编程及软件开发类,极速查询

今日已更新 184 篇代码解决方案

  • 1:tomcat程序全量更新脚本

                        #!/bin/bash#定义上线操作步骤IP=`ifconfig | grep "inet addr" |grep 139|awk ‘{print $2}‘|awk -F":" ‘{print $2}‘`DATE=`date +%F`S_DIR="

    https://www.u72.net/daima/w25k.html - 2024-08-25 22:26:14 - 代码库
  • 2:检测端口状态的python脚本

                        #!/usr/bin/env pythonimport os,subprocess,socket,time,sysfrom urllib import urlencodefrom socket import gethostnamedef check_port():

    https://www.u72.net/daima/s2bx.html - 2024-08-20 19:05:57 - 代码库
  • 3:nginx日志切割脚本,python实现

                        # 自搭建了个人博客 有需要交流学习的可以访问 www.wpython.com#!/usr/bin/env python import datetime,os,sys,shutil log_path = ‘/alidata/log

    https://www.u72.net/daima/wxzw.html - 2024-07-16 05:35:35 - 代码库
  • 4:MySql Windws 下自动备份脚本

                          这几天正在做一个  使用MySQL数据库的项目,目前项目已经完成了,当部署好项目之后,正在考虑如何自动备份MySql数据库的问题,我在网上找了一下资料终于解

    https://www.u72.net/daima/sub6.html - 2024-07-13 02:27:32 - 代码库
  • 5:linux下的shell和脚本

                        1.各种Unix shell linux下的shell基本是从unix环境中的shell发展而来,贴一下wiki:其中我们常用的,可归类为Bourne Shell(/usr/bin/sh或/bin/sh)、Bourne Aga

    https://www.u72.net/daima/wmc8.html - 2024-07-16 16:15:43 - 代码库
  • 6:shell脚本之函数的参数

                        #! /bin/bashecho use functionhello(){echo how many parameters in the function:$#;echo the name of this function is $0;echo the first

    https://www.u72.net/daima/w8en.html - 2024-08-26 07:45:41 - 代码库
  • 7:set -x 跟踪脚本执行信息

                         注意set -x其中"-"与"x"之间没有空格[root@GitLab sh]# ./sx.sh heelo+ a=heelo+ echo heeloheelo[root@GitLab sh]# cat sx.sh #!/bin/bash

    https://www.u72.net/daima/w9f6.html - 2024-08-26 08:18:20 - 代码库
  • 8:Shell脚本判断是否是闰年

                        #! /bin/bashecho -n Input year to judge if it is a leap year:read yearlet "y1=$year % 4"let "y2=$year % 100"let "y3=$year % 400"if [

    https://www.u72.net/daima/wevd.html - 2024-08-26 10:05:49 - 代码库
  • 9:perl脚本中的模式匹配

                        #判断一个变量是否匹配一个空字符串,m!pattern! 与 m/pattern/if($str =~ m!^\s*$!)如果仅仅判断字符串为空,可以使用if($str eq "")# 判断$doc变量是

    https://www.u72.net/daima/ua1e.html - 2024-07-13 17:38:46 - 代码库
  • 10:Linux Bash脚本基本语法知识

                        写在前面:如果此文有幸被某位朋友看见并发现有错的地方,希望批评指正。如有不明白的地方,愿可一起探讨。前提:读者能够基本使用一款文本编辑器以及了解文

    https://www.u72.net/daima/v8mh.html - 2024-07-15 14:42:56 - 代码库
  • 11:利用HTTP代理录制Jmeter脚本

                        1 测试计划中添加一个线程组12在“工作台”-非测试元件-添加“HTTP代理服务器”端口:代理服务器的端口,默认8080,可自行修改,但不要与其它应用端口冲突目标控

    https://www.u72.net/daima/wahu.html - 2024-07-15 17:26:13 - 代码库
  • 12:shell 脚本随机抽取班级学生

                        #/bin/bashjw=(name1,name2,name3......name39)for i in {1..3}doa=$(date +%N)b=$(expr $a % 39)echo "学号:"$[$b + 1]"  "${jw[$b]}done

    https://www.u72.net/daima/veae.html - 2024-08-24 16:45:15 - 代码库
  • 13:powerdesigner name->comment 脚本

                        Option   Explicit ValidationMode   =   True InteractiveMode   =   im_BatchDim   mdl   ‘   the   current   model‘   get   the   curr

    https://www.u72.net/daima/rk87.html - 2024-08-18 09:13:45 - 代码库
  • 14:基于shell脚本比较数字大小

                        让用户输入两个数来比较他们的大小先用touch命令新建一个1.sh文件在用vi进入i进入编辑状态输入#!/bin/bashread ""  aread ""  bif [ $a -

    https://www.u72.net/daima/v0cn.html - 2024-08-24 01:59:22 - 代码库
  • 15:SHELL脚本监控oracle alert日志

                        监控alert 日志思路:按alert日志行号取当前最后一行和上一次扫描的行对比 大于等于上一次扫描的行 就从上一次扫描的行开始 扫描到最后一行#!/bin/bash

    https://www.u72.net/daima/v49n.html - 2024-08-24 09:01:25 - 代码库
  • 16:Linux Shell脚本编程--cut命令

                        cutcut命令可以从一个文本文件或者文本流中提取文本列。cut语法[root@www ~]# cut -d‘分隔字符‘ -f fields <==用于有特定分隔字符[root@www ~]

    https://www.u72.net/daima/c5c0.html - 2024-08-18 00:23:46 - 代码库
  • 17:linux下nginx自动部署脚本

                        请保证系统可以使用yum源,可以访问外网.变量NGINX_PATH     修改nginx安装路径,默认为/opt/nginx变量NGINX_VERSION    修改nginx的安装版本,默认为1.10.0

    https://www.u72.net/daima/sdmz.html - 2024-08-20 02:02:15 - 代码库
  • 18:windws下发邮件vbs脚本

                             NameSpace = "http://schemas.microsoft.com/cdo/configuration/"Set Email = CreateObject("CDO.Message")Email.From = "xxxx@xxxx.com"Ema

    https://www.u72.net/daima/vc29.html - 2024-07-15 01:11:43 - 代码库
  • 19:纯练手设置ip地址脚本

                        #!/bin/bashIFO() {        read -p "Configure $line Network card ( ‘yes‘or‘no‘ )?" CDN </dev/tty        if [ "${CDN}" == yes ];then

    https://www.u72.net/daima/c4vd.html - 2024-08-17 23:43:42 - 代码库
  • 20:创建网络磁盘映射脚本

                        在域环境下,用户桌面自动获取一个网络磁盘的方法。首先,用户登录系统时,执行检查文件服务器上是否有自己的共享文件夹。可以采用如下保存为批处理:@echo of

    https://www.u72.net/daima/3w5e.html - 2024-07-21 07:42:30 - 代码库